-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
43 lines (37 loc) · 1.12 KB
/
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
34
35
36
37
38
39
40
41
42
43
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "netbox-kea-dhcp"
dynamic = ["version"]
authors = [{ name="francoismdj", email="" },]
description = "Use netbox as subnets source for ISC Kea DHCP server"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: System :: Systems Administration",
"Intended Audience :: Information Technology"
]
dependencies = [
"pynetbox~=7.0.1",
"bottle~=0.12.25",
"tomli >= 1.1.0 ; python_version < '3.11'"
]
[project.urls]
Homepage = "https://github.com/francoismdj/netbox-kea-dhcp"
[project.scripts]
netbox-kea-dhcp = "netboxkea.entry_point:run"
[tool.hatch.version]
path = "src/netboxkea/__about__.py"
[tool.hatch.build]
sources = ["src"]
[tool.hatch.build.force-include]
"examples/" = "examples"