-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 1.23 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "netbox-custom-objects-tab"
version = "2.0.2"
description = "NetBox plugin that adds a Custom Objects tab to object detail pages"
readme = "README.md"
requires-python = ">=3.12"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [
{name = "Jan Krupa", email = "jan.krupa@cesnet.cz"},
]
keywords = ["netbox", "plugin", "custom-objects"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Topic :: System :: Networking",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
]
dependencies = []
[project.optional-dependencies]
dev = ["pytest", "pytest-django", "ruff", "django-tables2"]
[project.urls]
Homepage = "https://github.com/CESNET/netbox-custom-objects-tab"
Issues = "https://github.com/CESNET/netbox-custom-objects-tab/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["netbox_custom_objects_tab*"]
[tool.setuptools.package-data]
netbox_custom_objects_tab = ["**/*", "templates/**"]
[tool.pytest.ini_options]
pythonpath = ["."]
DJANGO_SETTINGS_MODULE = "tests.settings"