-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpyproject.toml
73 lines (59 loc) · 2.09 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
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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "simple-dhcp-server"
license = {file = "LICENSE"}
keywords = ["dhcp", "logging", "discover", "LAN", "raspberry-pi"]
dynamic = ["urls", "version"]
authors = [
{ name="Nicco Kunzmann", email="[email protected]" },
]
maintainers = [
{ name="Nicco Kunzmann", email="[email protected]" },
]
description = "Very simple DHCP server written in Python."
readme = "README.md"
requires-python = ">=3.9"
# see https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Internet",
"Topic :: System :: Logging",
"Topic :: System :: Monitoring",
"Topic :: System :: Networking",
"Topic :: System :: Networking :: Monitoring",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
]
dependencies = []
[project.optional-dependencies]
qt = [
"pyside6",
"pyyaml",
]
[project.scripts]
simple-dhcp-server = "simple_dhcp_server:main"
simple-dhcp-server-tk = "simple_dhcp_server.tk:main"
simple-dhcp-server-qt = "simple_dhcp_server.qt:main"
simple-dhcp-server-serve = "simple_dhcp_server.dhcp:main"
simple-dhcp-server-listen = "simple_dhcp_server.listener:main"
[tool.hatch.metadata.hooks.vcs.urls]
Homepage = "https://dhcp.quelltext.eu"
Repository = "https://github.com/niccokunzmann/simple_dhcp_server/"
source_archive = "https://github.com/niccokunzmann/simple_dhcp_server/archive/{commit_hash}.zip"
Issues = "https://github.com/niccokunzmann/simple_dhcp_server/issues"
Documentation = "https://dhcp.quelltext.eu/"
Changelog = "https://dhcp.quelltext.eu/changes"
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
# see https://github.com/ofek/hatch-vcs/issues/43#issuecomment-1553065222
local_scheme = "no-local-version"
[tool.hatch.build.hooks.vcs]
version-file = "simple_dhcp_server/_version.py"
[tool.hatch.metadata]
allow-direct-references = true