-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
62 lines (54 loc) · 1.29 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
62
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "nav-argus-glue"
authors = [{name = "Morten Brekkevold", email = "[email protected]"}]
description = "An Argus glue service for Network Administration Visualized"
keywords = ["api", "argus", "client"]
license = {text = "GPLv3"}
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
dependencies = [
"argus-api-client>=0.5.0",
"pyaml",
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/Uninett/nav-argus-glue"
[project.scripts]
navargus = "navargus.glue:main"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = false
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.setuptools.dynamic]
version = {attr = "navargus.__version__"}
[tool.black]
line-length = 88
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.nox
| \.tox
| \.ve
| _build
| buck-out
| build
| dist
)/
)
'''