-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 1.38 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vpn-chainer"
version = "1.3.2"
description = "A tool to chain multiple WireGuard VPNs and rotate them dynamically via API"
readme = "README.md"
authors = [
{name = "Andy Hawkins", email = "andy+vpnchainer@hawkins.app"}
]
maintainers = [
{name = "Hawkins.Tech Inc", email = "projects+vpnchainer@hawkins.tech"}
]
license = {text = "MIT"}
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
"Topic :: Internet :: Proxy Servers",
"Topic :: Security",
"Topic :: System :: Networking",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers"
]
keywords = ["vpn", "wireguard", "proxy", "networking", "security", "privacy"]
dependencies = [
"Flask>=2.0.0",
"setproctitle>=1.3.0",
"speedtest-cli>=2.1.0"
]
[project.urls]
Homepage = "https://github.com/a904guy/VPN-Chainer"
Repository = "https://github.com/a904guy/VPN-Chainer"
Issues = "https://github.com/a904guy/VPN-Chainer/issues"
Documentation = "https://github.com/a904guy/VPN-Chainer/blob/main/README.md"
[project.scripts]
vpn-chainer = "vpn_chainer.vpn_chainer:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["vpn_chainer*"]