-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
55 lines (46 loc) · 1.31 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
# See PEP 518 for the spec of this file
# https://www.python.org/dev/peps/pep-0518/
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "netbox-aci-plugin"
version = "0.0.9"
authors = [
{name = "Martin Hauser", email = "[email protected]"},
]
description = "NetBox plugin for Cisco ACI."
readme = "README.md"
license = {file = "LICENSE"}
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
"Programming Language :: Python :: 3 :: Only",
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
requires-python = ">=3.10.0"
[project.optional-dependencies]
test = [
"check-manifest==0.49",
"isort",
"pre-commit==3.8.0",
"pytest==8.3.3",
"ruff==0.6.9",
"yamllint",
]
[project.urls]
Documentation = "https://github.com/pheus/netbox-aci-plugin/blob/main/README.md"
Source = "https://github.com/pheus/netbox-aci-plugin"
Tracker = "https://github.com/pheus/netbox-aci-plugin/issues"
[tool.isort]
line_length = 79
profile = "black"
[tool.ruff]
line-length = 79
# Always generate Python 3.10-compatible code.
target_version = "py310"
[tool.setuptools.package-data]
netbox_aci_plugin = ["templates/**"]