Files
pwo/pyproject.toml
Walter Oggioni 1cc1e2bef7
All checks were successful
CI / build (push) Successful in 12s
added retry decorators
2024-06-22 20:57:17 +08:00

35 lines
850 B
TOML

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pwo"
version = "0.0.2"
authors = [
{ name="Walter Oggioni", email="oggioni.walter@gmail.com" },
]
description = "Python language utilities"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'typing_extensions==4.7.1'
]
[project.urls]
"Homepage" = "https://gitea.woggioni.net/woggioni/pwo"
"Bug Tracker" = "https://gitea.woggioni.net/woggioni/pwo/issues"
[tool.mypy]
python_version = "3.12"
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