forked from Uninett/nav
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (51 loc) · 1.42 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
[build-system]
requires = ["setuptools>=61.0", "wheel", "setuptools_scm[toml]>=6.2", "libsass"]
build-backend = "setuptools.build_meta"
[project]
name = "nav"
description = "Network Administration Visualized - A comprehensive, free Network Management System"
authors = [{name="Sikt - Norwegian agency for shared services in education and research", email="[email protected]"}]
readme = "README.rst"
requires-python = ">=3.7"
license = {text = "GPLv3"}
keywords = ["nms", "snmp"]
classifiers = [
"Development Status :: 6 - Mature",
"Topic :: System :: Networking :: Monitoring",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
dynamic = ["version"]
dependencies = [
"pydantic >= 2.0",
]
[project.urls]
Homepage = "https://nav.uninett.no/"
[tool.setuptools]
include-package-data = true
zip-safe = false
platforms = ["any"]
[tool.setuptools_scm]
[tool.setuptools.packages.find]
where = ["python"]
[tool.black]
skip-string-normalization=true
line-length = 88
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.nox
| \.tox
| \.venv
| _build
| build
| dist
)/
| python/nav/enterprise/ids\.py # Autogenerated list of constants
| python/nav/smidumps/.*\.py # Autogenerated MIB dumps
| python/nav/etc/geomap/config\.py # Not actually a Python file
)
'''