blob: 5acfd3927264b5365afaa480cc03c2f3e76230e5 [file] [log] [blame]
Ankush Menat20f85192022-06-29 12:23:17 +05301[project]
2name = "erpnext"
3authors = [
4 { name = "Frappe Technologies Pvt Ltd", email = "developers@frappe.io"}
5]
6description = "Open Source ERP"
Ankush Menat57d08b72022-06-30 15:49:43 +05307requires-python = ">=3.10"
Ankush Menat20f85192022-06-29 12:23:17 +05308readme = "README.md"
9dynamic = ["version"]
10dependencies = [
11 # Core dependencies
12 "pycountry~=20.7.3",
13 "python-stdnum~=1.16",
14 "Unidecode~=1.2.0",
15 "redisearch~=2.1.0",
16
17 # integration dependencies
18 "gocardless-pro~=1.22.0",
19 "googlemaps",
20 "plaid-python~=7.2.1",
21 "python-youtube~=0.8.0",
22 "taxjar~=1.9.2",
23 "tweepy~=3.10.0",
24]
25
26[build-system]
27requires = ["flit_core >=3.4,<4"]
28build-backend = "flit_core.buildapi"
29
Ankush Menatcd0450b2022-06-29 19:24:52 +053030[tool.bench.dev-dependencies]
31hypothesis = "~=6.31.0"
32
Chillar Anand915b3432021-09-02 16:44:59 +053033[tool.black]
34line-length = 99
35
36[tool.isort]
37line_length = 99
38multi_line_output = 3
39include_trailing_comma = true
40force_grid_wrap = 0
41use_parentheses = true
42ensure_newline_before_comments = true
43indent = "\t"