-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
53 lines (45 loc) · 1.03 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"]
build-backend = "hatchling.build"
[project]
name = "re6stnet"
description = "Resilient, Scalable, IPv6 Network"
authors = [
{ name = "Nexedi", email = "re6stnet@erp5.org" },
]
license = { text = "GPL-2.0-or-later" }
classifiers = [
"Environment :: Console",
"Operating System :: POSIX :: Linux",
"Topic :: Internet",
"Topic :: System :: Networking",
]
requires-python = ">= 3.11"
dependencies = [
"pyOpenSSL >= 0.13",
"miniupnpc",
]
dynamic = ["readme", "version"]
[project.optional-dependencies]
geoip = ["geoip2"]
multicast = ["PyYAML"]
test = ["mock", "nemu3", "unshare", "multiping", "psutil"]
[project.scripts]
re6st-conf = "re6st.cli.conf:main"
re6stnet = "re6st.cli.node:main"
re6st-registry = "re6st.cli.registry:main"
[project.urls]
Homepage = "http://re6st.net"
[tool.hatch.metadata.hooks.custom]
[tool.hatch.build.hooks.custom]
[tool.hatch.build]
include = [
"/re6st",
"/docs",
"/*.rst",
]
exclude = [
"/re6st/tests",
]
[tool.hatch.build.targets.wheel]
only-packages = true