-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (67 loc) · 1.69 KB
/
pyproject.toml
File metadata and controls
74 lines (67 loc) · 1.69 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[project]
name = "netbox-plugin-dns"
version = "1.5.10"
description = "NetBox DNS is a NetBox plugin for managing DNS data."
authors = [
{name="Peter Eckel", email="pe@sys4.de"},
]
license-files = [
"LICENSE"
]
readme = "README.md"
keywords = ["netbox", "netbox-plugin", "dns"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"dnspython",
]
requires-python = ">=3.12"
[project.urls]
Homepage = "https://github.com/sys4/netbox-plugin-dns"
Documentation = "https://github.com/sys4/netbox-plugin-dns/blob/main/docs/using_netbox_dns.md"
Repository = "https://github.com/sys4/netbox-plugin-dns"
Issues = "https://github.com/sys4/netbox-plugin-dns/issues"
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[tool.setuptools]
packages = [
"netbox_dns",
]
package-data = { "netbox_dns" = ["**/*", "templates/**"] }
exclude-package-data = { "netbox_dns" = ["tests/*"] }
[tool.ruff]
target-version = "py312"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "W", "C", "RET", "UP", "I"]
ignore = ["F403", "C901"]
preview = true
[tool.ruff.lint.isort]
known-first-party = [
"account",
"circuits",
"core",
"dcim",
"extras",
"ipam",
"netbox",
"tenancy",
"users",
"utilities",
"virtualization",
"vpn",
"wireless",
"netbox_dns",
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "lf"