forked from resilient-tech/india-compliance
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
31 lines (27 loc) · 810 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 = "india_compliance"
authors = [
{ name = "Resilient Tech", email = "hello@indiacompliance.app" }
]
description = "ERPNext app to simplify compliance with Indian Rules and Regulations"
readme = "README.md"
dynamic = ["version"]
dependencies = [
"python-barcode~=0.13.1",
"titlecase~=2.3",
"rapidfuzz~=2.1.4",
# Not used directly - required by PyQRCode for PNG generation
"pypng~=0.20220715.0",
]
[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"]
[tool.bench.dev-dependencies]
parameterized = "~=0.8.1"
responses = "~=0.21.0"