blob: b39c4f072f8f9d7886fd33ef1a70ee14c3ba33cd [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"
7requires-python = ">=3.8"
8readme = "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
Chillar Anand915b3432021-09-02 16:44:59 +053030[tool.black]
31line-length = 99
32
33[tool.isort]
34line_length = 99
35multi_line_output = 3
36include_trailing_comma = true
37force_grid_wrap = 0
38use_parentheses = true
39ensure_newline_before_comments = true
40indent = "\t"