36 lines
905 B
TOML
36 lines
905 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "awsdyndns"
|
|
version = "0.2.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.urls]
|
|
"Homepage" = "https://woggioni.net/cgit/awsdyndns.git/"
|
|
"Bug Tracker" = "https://woggioni.net/cgit/awsdyndns.git/"
|
|
|
|
[project.scripts]
|
|
awsdyndns = "awsdyndns.wrapper: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 |