Files
wdyndns/pyproject.toml
Walter Oggioni d63fb1412a
All checks were successful
CI / build (push) Successful in 23s
renamed to wdyndns to avoiod conflict with PyPI package
2025-09-02 06:15:58 +08:00

48 lines
1.1 KiB
TOML

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "wdyndns"
version = "0.4.0"
authors = [
{ name="Walter Oggioni", email="oggioni.walter@gmail.com" },
]
description = "Simple utility to dynamically update Route 53 DNS on AWS"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
]
[project.optional-dependencies]
dev = [
"build", "mypy", "ipdb", "twine"
]
[tool.setuptools.package-data]
wdyndns = ['conf/*']
[project.urls]
"Homepage" = "https://gitea.woggioni.net/woggioni/wdyndns/"
"Bug Tracker" = "https://gitea.woggioni.net/woggioni/wdyndns/"
[project.scripts]
awsdyndns = "wdyndns.aws:run"
cloudflaredyndns = "wdyndns.cloudflare:run"
[tool.mypy]
python_version = "3.11"
disallow_untyped_defs = true
show_error_codes = true
no_implicit_optional = true
warn_return_any = true
warn_unused_ignores = true
exclude = ["scripts", "docs", "test"]
strict = true