-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
67 lines (60 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
"wheel",
]
[project]
name = "netbox-config-diff"
description = "Push rendered device configurations from NetBox to devices and apply them."
readme = "README.md"
keywords = [
"netbox",
"netbox-plugin",
"automation",
"network",
"network-automation",
"configuration-compliance",
]
requires-python = ">=3.10"
classifiers = [
"Framework :: Django",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
license = { file = "LICENSE" }
authors = [
{email = "[email protected]"},
{name = "Artem Kotik"}
]
dynamic = [
"dependencies",
"optional-dependencies",
"version",
]
[project.urls]
repository = "https://github.com/miaow2/netbox-config-diff/"
homepage = "https://miaow2.github.io/netbox-config-diff/"
documentation = "https://miaow2.github.io/netbox-config-diff/"
[tool.setuptools.packages]
find = {}
[tool.setuptools.dynamic]
version = { attr = "netbox_config_diff.__version__" }
dependencies = {file = ["requirements/base.txt"]}
optional-dependencies.dev = { file = ["requirements/dev.txt"] }
optional-dependencies.test = { file = ["requirements/test.txt"] }
[tool.ruff]
exclude = ["migrations", "__pycache__"]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = ["C", "E", "F", "I"]
ignore = ["C901"]
[tool.pytest.ini_options]
addopts = "-p no:warnings -vv --no-migrations"
DJANGO_SETTINGS_MODULE = "netbox.settings"
pythonpath = ["/opt/netbox/netbox"]