forked from netboxlabs/diode-netbox-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (57 loc) · 1.68 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
56
57
58
59
60
61
62
63
64
65
66
67
[project]
name = "netboxlabs-diode-netbox-plugin"
version = "0.0.1" # Overwritten during the build process
description = "NetBox Labs, Diode NetBox plugin"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "PolyForm Shield License 1.0.0" }
authors = [
{name = "NetBox Labs", email = "[email protected]" }
]
maintainers = [
{name = "NetBox Labs", email = "[email protected]" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
dependencies = [
"Brotli==1.1.0",
"certifi==2024.7.4",
"grpcio==1.62.1",
"protobuf==5.28.1",
]
[project.optional-dependencies]
dev = ["black", "check-manifest", "ruff"]
test = ["coverage", "pytest", "pytest-cov"]
[project.urls]
"Homepage" = "https://netboxlabs.com/"
[project.scripts]
[tool.setuptools]
packages = [
"netbox_diode_plugin",
]
package-data = {"netbox_diode_plugin" = ["**/*", "templates/**"]}
exclude-package-data = {netbox_diode_plugin = ["tests/*"]}
license-files = ["LICENSE.md"]
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 140
exclude = [
"*_pb2*",
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.ruff.lint]
select = ["C", "D", "E", "F", "I", "R", "UP", "W"]
ignore = ["F401", "D203", "D212", "D400", "D401", "D404", "RET504"]