-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 1.24 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"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["netbox_acls"]
package-data = {"netbox_acls" = ["**/*", "templates/**"]}
[project]
name = "netbox-acls"
version = "1.9.1"
readme = "README.md"
requires-python = ">=3.12.0"
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
"Programming Language :: Python :: 3 :: Only",
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Intended Audience :: System Administrators',
'Intended Audience :: Telecommunications Industry',
'Framework :: Django',
'Topic :: System :: Networking',
'Topic :: Internet',
]
keywords = ["netbox", "netbox-plugin"]
license = {file = "LICENSE.txt"}
[project.optional-dependencies]
test = [
"check-manifest==0.51",
"pre-commit==4.5.1",
"pytest==9.0.2",
"ruff==0.15.6",
"yamllint==1.38.0",
]
[project.urls]
Documentation = "https://github.com/netbox-community/netbox-acls/blob/dev/README.md"
Source = "https://github.com/netbox-community/netbox-acls/"
Tracker = "https://github.com/netbox-community/netbox-acls/issues"