-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
33 lines (29 loc) · 971 Bytes
/
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
[project]
name = "netbox-plugin-dns"
version = "1.1.5"
description = "NetBox DNS is a NetBox plugin for managing DNS data."
authors = [
{name="Peter Eckel", email="[email protected]"},
]
license = {file="LICENCE"}
readme = "README.md"
keywords = ["netbox", "netbox-plugin", "dns"]
classifiers = [
"Development Status :: 5 - Production/Stable"
]
dependencies = [
"dnspython",
]
requires-python = ">=3.10"
[project.urls]
Homepage = "https://github.com/peteeckel/netbox-plugin-dns"
Documentation = "https://github.com/peteeckel/netbox-plugin-dns/blob/main/docs/using_netbox_dns.md"
Repository = "https://github.com/peteeckel/netbox-plugin-dns"
Issues = "https://github.com/peteeckel/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"]