mirror of
https://github.com/donlon/cloudflare-error-page.git
synced 2025-12-19 06:49:30 +00:00
25 lines
541 B
TOML
25 lines
541 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/*",
|
|
]
|