dyn-gandi/pyproject.toml

19 lines
394 B
TOML
Raw Permalink Normal View History

2023-07-26 20:27:02 +00:00
[tool.poetry]
name = "dyn-gandi"
version = "0.1.0"
description = "A DNS updater"
authors = ["Kristian Krsnik <git@krsnik.at>"]
readme = "README.md"
2023-10-13 11:50:05 +00:00
packages = [{ include = "dyn_gandi" }]
2023-07-26 20:27:02 +00:00
[tool.poetry.dependencies]
python = "^3.10"
requests = "2.29.0"
[tool.poetry.scripts]
2023-10-13 11:50:05 +00:00
dyn-gandi = "dyn_gandi.main:main"
2023-07-26 20:27:02 +00:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"