-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
48 lines (40 loc) · 1.06 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
[project]
name = "netbox-initializers"
authors = [{ name = "Tobias Genannt", email = "[email protected]" }]
classifiers = [
"Framework :: Django",
"Environment :: Plugins",
"Topic :: System :: Networking",
"Topic :: System :: Systems Administration",
]
description = "Load initial data into Netbox"
readme = "README.md"
repository = "https://github.com/tobiasge/netbox-initializers"
license = "Apache-2.0"
dynamic = ["version"]
requires-python = ">=3.10"
dependencies = ["ruamel-yaml>=0.18.6"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/netbox_initializers/version.py"
[tool.uv]
dev-dependencies = ["ruff==0.6.3"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
extend-select = ["I", "PL", "W191", "W291", "W292", "W293"]
ignore = ["PLR0912", "PLR0915"]
[tool.ruff.lint.isort]
section-order = [
"future",
"standard-library",
"third-party",
"first-party",
"local-folder",
]
[tool.ruff.format]
docstring-code-format = true
docstring-code-line-length = "dynamic"