-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
40 lines (34 loc) · 871 Bytes
/
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
[project]
name = "netbox-contract"
version = "2.2.8"
authors = [
{ name="Marc Lebreuil", email="[email protected]" },
]
description = "Contract management plugin for Netbox"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
'python-dateutil',
'drf_yasg',
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/mlebreuil/netbox-contract"
"Bug Tracker" = "https://github.com/mlebreuil/netbox-contract/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
zip-safe = false
[tool.setuptools.packages.find]
where = ["src"]
include = ["*"]
namespaces = false
[tool.black]
skip-string-normalization = true
[tool.isort]
profile = "black"