switched to pyproject.toml

This commit is contained in:
2023-12-12 14:51:56 +01:00
parent ba1e01b169
commit 83b52b3439
3 changed files with 47 additions and 38 deletions

36
pyproject.toml Normal file
View File

@@ -0,0 +1,36 @@
[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