You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nr-wg-mtu-finder/pyproject.toml

42 lines
748 B
TOML

[tool.poetry]
name = "nr-wg-mtu-finder"
version = "0.2.1"
description = "Scripts to find the optimal MTU for Wireguard server and peers."
authors = ["nitred <nitish.k.reddy@gmail.com>"]
[tool.poetry.scripts]
nr-wg-mtu-finder = "nr_wg_mtu_finder.main:run"
nr-wg-mtu-finder-heatmap = "nr_wg_mtu_finder.main_heatmap:run"
[tool.poetry.dependencies]
python = ">=3.8"
pandas = "==1.3.5"
matplotlib = "==3.4.3"
seaborn = "==0.11.2"
pydantic = "==1.8.2"
requests = "==2.27.1"
flask = "==2.0.3"
werkzeug = "==2.0.3"
[tool.poetry.extras]
[tool.poetry.dev-dependencies]
black = "==22.1.0"
[tool.black]
max-line-length = 88
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core==1.0.8"]
build-backend = "poetry.core.masonry.api"