-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 852 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 852 Bytes
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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "netbox-device-view"
version = "0.3.0b1"
description = "NetBox Device View plugin"
readme = "README.md"
authors = [{ name = "Peter Baumert" }]
license = {text = "MIT"}
requires-python = ">=3.12"
keywords = ["netbox", "netbox-plugin"]
classifiers = [
"Framework :: Django",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
[project.urls]
Homepage = "https://github.com/peterbaumert/netbox-device-view"
Documentation = "https://peterbaumert.github.io/netbox-device-view/"
[project.optional-dependencies]
docs = ["mkdocs-material>=9.5"]
[tool.setuptools.packages.find]
where = ["."]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "netbox.settings"
pythonpath = ["/opt/netbox/netbox", "."]