wg-meshconf/pyproject.toml

30 lines
670 B
TOML
Raw Normal View History

[project]
name = "wg-meshconf"
version = "2.5.0"
description = "A tool that helps you to generate peer configuration files for WireGuard mesh networks"
authors = [{name = "K4YT3X", email = "i@k4yt3x.com"}]
dependencies = [
"cryptography>=39.0.0",
"rich>=13.3.1",
]
requires-python = ">=3.7"
readme = "README.md"
license = {text = "GPL-3.0-or-later"}
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/k4yt3x/wg-meshconf"
[project.scripts]
wg-meshconf = "wg_meshconf:main"
[tool.isort]
profile = "black"
[tool.pdm]
version = { from = "wg_meshconf/__init__.py" }
2021-06-22 08:51:00 +02:00
[build-system]
requires = ["pdm-pep517>=1.0"]
build-backend = "pdm.pep517.api"