-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 857 Bytes
/
pyproject.toml
File metadata and controls
29 lines (26 loc) · 857 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "python-openvpn-client"
version = "0.0.1"
description = "An API for managing an OpenVPN connection"
readme = "README.md"
requires-python = ">=3.9" # via 'vermin'
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
]
dependencies = ["psutil", "docopt", "typing_extensions"]
[project.urls]
Homepage = "https://github.com/KTH-SSAS/python-openvpn-client"
Issues = "https://github.com/KTH-SSAS/python-openvpn-client/issues"
# for local development
[tool.pyright]
venvPath = "."
venv = ".venv"
typeCheckingMode = "off"