9
0
mirror of https://github.com/donlon/cloudflare-error-page.git synced 2025-12-25 09:49:23 +00:00
Files
cloudflare-error-page/pyproject.toml
syrf109475 e66b5357a4 Add versioning configuration to pyproject.toml
Fix "ValueError: Missing `tool.hatch.version` configuration" when using pip install
2025-12-21 14:54:52 +08:00

28 lines
606 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cloudflare-error-page"
description = "A customizable Cloudflare error page generator"
authors = [{ name = "Anthony Donlon" }]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"jinja2>=3.0"
]
dynamic = [ "version" ]
[project.urls]
Homepage = "https://github.com/donlon/cloudflare-error-page"
[tool.hatch.build]
include = [
"cloudflare_error_page/*.py",
"cloudflare_error_page/templates/*",
]
[tool.hatch.version]
path = "cloudflare_error_page/__init__.py"