-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (45 loc) · 1.1 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (45 loc) · 1.1 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
53
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "netbox-inventory"
version = "2.6.0"
authors = [
{ name="Matej Vadnjal", email="matej.vadnjal@arnes.si" },
]
description = "Inventory asset management in NetBox"
readme = "README.md"
license = "MIT"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
keywords = ["netbox", "netbox-plugin", "inventory"]
[project.urls]
"Homepage" = "https://github.com/ArnesSI/netbox-inventory/"
"Bug Tracker" = "https://github.com/ArnesSI/netbox-inventory/issues/"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["netbox_inventory*"]
[tool.ruff]
exclude = [
"netbox_inventory/migrations",
]
[tool.ruff.lint]
extend-select = ["E4", "E7", "E9", "F", "W", "C", "I"]
ignore = ["F403", "F405"]
[tool.ruff.lint.isort]
known-local-folder = ["netbox_inventory"]
known-first-party = [
"netbox",
"core",
"dcim",
"extras",
"tenancy",
"users",
"utilities",
]
[tool.ruff.format]
quote-style = "single"