-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
38 lines (33 loc) · 1.28 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
[project]
name = "vpn-server"
dynamic = ["version", "dependencies"]
description = "Create an on-demand VPN Server running OpenVPN using AWS EC2"
readme = "README.md"
authors = [{ name = "Vignesh Rao", email = "svignesh1793@gmail.com" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: System :: Networking :: Firewalls"
]
keywords = ["openvpn-server", "vpn-server", "aws-ec2"]
requires-python = ">=3.8"
[tool.setuptools]
packages = ["vpn", "vpn.models"]
[tool.setuptools.dynamic]
version = { attr = "vpn.version" }
dependencies = { file = ["vpn/requirements.txt"] }
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
dev = ["pre-commit"]
[project.urls]
Homepage = "https://github.com/thevickypedia/vpn-server"
Docs = "https://thevickypedia.github.io/vpn-server"
Source = "https://github.com/thevickypedia/vpn-server"
"Bug Tracker" = "https://github.com/thevickypedia/vpn-server/issues"
"Release Notes" = "https://github.com/thevickypedia/vpn-server/blob/main/release_notes.rst"