-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (29 loc) · 853 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "wg-interactive"
version = "0.4.1"
authors = [
{ name="Julian", email="[email protected]" }
]
description = "A cli utility for interactively modifying wireguard servers."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: System administrators",
]
dependencies=[
"wgconfig>=0.2.2",
"termcolor>=1.1.0",
"netifaces==0.11.0",
"validators==0.34.0"
]
[project.urls]
"Homepage" = "https://github.com/das-kaesebrot/wg-interactive"
"Bug Tracker" = "https://github.com/das-kaesebrot/wg-interactive/issues"
[project.scripts]
wg-interactive = "wginteractive.entrypoint:main"