forked from tobiasge/netbox-initializers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (43 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
52 lines (43 loc) · 1.21 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
44
45
46
47
48
49
50
51
52
[project]
name = "netbox-initializers"
authors = [{ name = "Tobias Genannt", email = "tobias.genannt@gmail.com" }]
classifiers = [
"Framework :: Django",
"Environment :: Plugins",
"Topic :: System :: Networking",
"Topic :: System :: Systems Administration",
]
description = "Load initial data into Netbox"
readme = "README.md"
license = "Apache-2.0"
dynamic = ["version"]
requires-python = ">=3.10"
dependencies = ["ruamel-yaml>=0.18.10"]
[project.urls]
repository = "https://github.com/tobiasge/netbox-initializers"
issues = "https://github.com/tobiasge/netbox-initializers/issues"
releasenotes = "https://github.com/tobiasge/netbox-initializers/releases"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/netbox_initializers/version.py"
[tool.uv]
dev-dependencies = ["ruff==0.9.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"