-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (39 loc) · 1.21 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
[tool.poetry]
name = "wireguard-mesh"
version = "0.2.5"
description = "A Wireguard L2 Mesh Network Automation Tool"
authors = ["Phillip Sitbon <[email protected]>"]
readme = "readme.md"
repository = "https://github.com/sitbon/wireguard-mesh"
homepage = "https://github.com/sitbon/wireguard-mesh"
license = "AGPLv3"
keywords = ["wireguard", "mesh", "vpn", "networking"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Networking",
"Topic :: System :: Systems Administration",
]
packages = [
{ include = "mesh" },
]
[tool.poetry.scripts]
mesh = "mesh.__main__:main"
[tool.poetry.dependencies]
python = "^3.11"
wireguard-tools = "^0.4.4"
attrs = "^23.1.0"
fabric = "^3.2.2"
pyyaml = "^6.0.1"
pulumi = {version = "^3.96.1", optional = true}
[tool.poetry.extras]
pulumi = ["pulumi"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"