-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (50 loc) · 1.71 KB
/
pyproject.toml
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
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools", "wheel", "pyyaml"]
build-backend = "setuptools.build_meta"
[project]
name = "inventree-apprise"
version = "1.1"
description=" Send notifications from InvenTree via Apprise"
readme = "README.md"
license = {text = "MIT"}
keywords = ["inventree", "inventree-plugin", "apprise"]
authors = [
{name = "Matthias Mair", email = "[email protected]"}
]
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: Manufacturing",
"Intended Audience :: End Users/Desktop",
"Topic :: Scientific/Engineering",
]
requires-python=">=3.9"
dependencies = ['django', 'apprise']
[project.optional-dependencies]
dev = ['twine', 'setuptools']
[project.urls]
"Repository" = "https://github.com/invenhost/inventree-apprise"
"Bug Tracker" = "https://github.com/invenhost/inventree-apprise/issues"
[project.entry-points."inventree_plugins"]
inventree-apprise = "inventree_apprise:ApprisePlugin"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
exclude=[".git","__pycache__","dist","build","test.py","tests", "venv","env",".venv",".env"]
[tool.ruff.lint]
select = ["A", "B", "C4", "D", "DJ", "N", "I","S"]
ignore = ["N999", ]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.isort]
combine-as-imports = true
section-order = ["future", "standard-library", "django", "third-party", "first-party", "local-folder" ]
known-first-party = ["src", "plugin", "InvenTree", "common"]
[tool.ruff.lint.isort.sections]
"django" = ["django"]
[tool.check-wheel-contents]
ignore = ['W004']