-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (47 loc) · 1.18 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
[build-system]
requires = ["hatchling>=1.21.1"]
build-backend = "hatchling.build"
[project]
name = "neatplan"
version = "0.3.0"
authors = [
{ name="c0m4r", email="github@wolfet.pl" },
]
description = "nginx-style network configuration"
license = { text = "GPLv3" }
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Intended Audience :: System Administrators",
"Environment :: Console",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Networking",
"Topic :: System :: Operating System",
]
dependencies = [
"crossplane>=0.5.8",
]
[project.scripts]
neatplan = "neatplan:main"
[project.urls]
Homepage = "https://github.com/c0m4r/neatplan"
Issues = "https://github.com/c0m4r/neatplan/issues"
Changelog = "https://github.com/c0m4r/neatplan/blob/main/CHANGELOG"
[tool.hatch.version]
path = "neatplan/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/bin",
"/neatplan",
"/etc",
"/CHANGELOG",
"deploy.sh",
"neatplan.sh",
"requirements.txt",
]
[tool.hatch.build.targets.wheel]
include = [
"/neatplan/*",
]