|
12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- [project]
- name = "influxerp"
- authors = [
- { name = "InfluxFramework LLC", email = "developers@influxframework.io"}
- ]
- description = "Open Source ERP"
- requires-python = ">=3.10"
- readme = "README.md"
- dynamic = ["version"]
- dependencies = [
- # Core dependencies
- "pycountry~=20.7.3",
- "python-stdnum~=1.16",
- "Unidecode~=1.2.0",
- "redisearch~=2.1.0",
-
- # integration dependencies
- "gocardless-pro~=1.22.0",
- "googlemaps",
- "plaid-python~=7.2.1",
- "python-youtube~=0.8.0",
- "taxjar~=1.9.2",
- "tweepy~=3.10.0",
- ]
-
- [build-system]
- requires = ["flit_core >=3.4,<4"]
- build-backend = "flit_core.buildapi"
-
- [tool.bench.dev-dependencies]
- hypothesis = "~=6.31.0"
-
- [tool.black]
- line-length = 99
-
- [tool.isort]
- line_length = 99
- multi_line_output = 3
- include_trailing_comma = true
- force_grid_wrap = 0
- use_parentheses = true
- ensure_newline_before_comments = true
- indent = "\t"
|