blob: 7841c920546160cd9121803bf78b494f7f9d154f [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
Ankush Menatf957a842023-06-12 21:46:06 +053012 "pycountry~=22.3.5",
13 "Unidecode~=1.3.6",
Johannes Obermeier2a90fad2023-02-19 15:06:05 +010014 "barcodenumber~=0.5.0",
marinatione7745032023-03-31 16:11:00 +053015 "rapidfuzz~=2.15.0",
barredterraaa18b252023-07-13 13:29:07 +020016 "holidays~=0.28",
Ankush Menat20f85192022-06-29 12:23:17 +053017
18 # integration dependencies
19 "gocardless-pro~=1.22.0",
20 "googlemaps",
21 "plaid-python~=7.2.1",
22 "python-youtube~=0.8.0",
David Arnoldb740cdf2023-07-23 22:15:02 -050023 "tweepy~=4.14.0",
Sagar Vora2e9f5312022-09-01 11:27:01 +053024
25 # Not used directly - required by PyQRCode for PNG generation
26 "pypng~=0.20220715.0",
Ankush Menat20f85192022-06-29 12:23:17 +053027]
28
29[build-system]
30requires = ["flit_core >=3.4,<4"]
31build-backend = "flit_core.buildapi"
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"