blob: 14684f349117ef0343d6f004fa9733342e4922cd [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",
Ankush Menat20f85192022-06-29 12:23:17 +053015
16 # integration dependencies
17 "gocardless-pro~=1.22.0",
18 "googlemaps",
19 "plaid-python~=7.2.1",
20 "python-youtube~=0.8.0",
21 "taxjar~=1.9.2",
22 "tweepy~=3.10.0",
23]
24
25[build-system]
26requires = ["flit_core >=3.4,<4"]
27build-backend = "flit_core.buildapi"
28
Ankush Menatcd0450b2022-06-29 19:24:52 +053029[tool.bench.dev-dependencies]
30hypothesis = "~=6.31.0"
31
Chillar Anand915b3432021-09-02 16:44:59 +053032[tool.black]
33line-length = 99
34
35[tool.isort]
36line_length = 99
37multi_line_output = 3
38include_trailing_comma = true
39force_grid_wrap = 0
40use_parentheses = true
41ensure_newline_before_comments = true
42indent = "\t"