-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
52 lines (45 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["setuptools >= 75.3.2"]
build-backend = "setuptools.build_meta"
[project]
name = "inventree"
dynamic = ["version"]
description = "Python interface for InvenTree inventory management system"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
authors = [
{ name = "Oliver Walters", email = "oliver.henry.walters@gmail.com" },
]
keywords = [
"barcode",
"bill",
"bom",
"inventory",
"management",
"materials",
"of",
"stock",
]
dependencies = [
"requests>=2.27.0",
"urllib3>=2.3.0",
]
[project.optional-dependencies]
"system-certs" = ["pip-system-certs>=4.0"]
[project.urls]
Homepage = "https://github.com/inventree/inventree-python/"
[tool.setuptools.dynamic]
version = {attr = "inventree.base.INVENTREE_PYTHON_VERSION"}
[tool.setuptools]
packages = ["inventree"]
[tool.flake8]
ignore =[
'C901',
# - W293 - blank lines contain whitespace
'W293',
# - E501 - line too long (82 characters)
'E501',
'N802']
exclude = ['.git','__pycache__','inventree_server','dist','build','test.py']
max-complexity = 20