-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 1.11 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
[project]
name = "netbox-plugin-dns"
version = "1.5.5"
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",
"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.find]
exclude = ["examples*", "media*", "*.tests*"]
[tool.setuptools.package-data]
"netbox_dns" = ["templates/**/*.html", "locale/**/*.mo"]