forked from navariltd/kenya-compliance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
31 lines (28 loc) · 833 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[project]
name = "kenya_compliance"
authors = [
{ name = "Navari Ltd", email = "[email protected]"}
]
description = "KRA Etims Integration for ERPNext based applications"
requires-python = ">=3.10"
readme = "README.md"
dynamic = ["version"]
dependencies = [
# "frappe~=15.0.0" # Installed and managed by bench.
"aiohttp==3.9.1",
"deprecation==2.1.0",
"qrcode==7.4.2"
]
[build-system]
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"
[tool.isort]
profile = "black"
known_frappe = "frappe"
known_erpnext = "erpnext"
no_lines_before = ["ERPNEXT"]
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FRAPPE", "ERPNEXT", "FIRSTPARTY", "LOCALFOLDER"]
# These dependencies are only installed when developer mode is enabled
[tool.bench.dev-dependencies]
pre-commit = "~=3.7.1"
flake8 = "~=7.1.0"