25 lines
660 B
TOML
25 lines
660 B
TOML
[tool.poetry]
|
|
name = "wg-bootstrap"
|
|
version = "0.1.0"
|
|
description = "wg-quick wrapper for creating interface config and up/down wg"
|
|
authors = ["MOIS3Y <s.zhukovskii@ispsystem.com>"]
|
|
license = "GPL-3.0-or-later"
|
|
repository = "https://git.isptech.ru/ISPsystem/wg-bootstrap"
|
|
keywords = ["wireguard-tools", "wg", "interface"]
|
|
include = ["CHANGELOG.md"]
|
|
readme = "README.md"
|
|
packages = [{include = "wg_bootstrap"}]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8.1"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
flake8 = "^6.0.0"
|
|
|
|
[tool.poetry.scripts]
|
|
wg-start = "wg_bootstrap.wg_start:main"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|