Files
wcm/pyproject.toml
T
2024-12-28 19:17:03 +03:00

33 lines
603 B
TOML

[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["vpn_manager"]
[project]
name = "vpn-manager"
description = "Manage WireGuard VPN peers (both server and clients)"
version = "2024.12.0a"
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.8"
dependencies = ["click>=8.1"]
authors = [
{name = "Fedor Lyanguzov"},
]
[project.optional-dependencies]
test = ["pytest"]
lint = [
"black",
"flake8",
"Flake8-pyproject"
]
[project.scripts]
example = "vpn_manager.__main__:main"
[tool.flake8]
ignore = ["E501"]