9
0
mirror of https://github.com/donlon/cloudflare-error-page.git synced 2026-01-06 15:41:45 +00:00
Files
cloudflare-error-page/editor/server/pyproject.toml
2025-12-29 01:47:15 +08:00

44 lines
804 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cloudflare-error-page-editor-server"
description = "Backend of the Cloudflare error page editor"
requires-python = ">=3.13"
license = "MIT"
authors = [{ name = "Anthony Donlon" }]
dependencies = [
"Flask",
"Flask-Limiter",
"Flask-SqlAlchemy",
"cloudflare-error-page",
]
version = "0.0.0"
[tool.hatch.envs.default]
dependencies = [
"cloudflare-error-page @ {root:uri}/../../",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build]
include = ["app/**/*"]
[tool.hatch.build.targets.wheel.hooks.custom]
path = "hatch_build.py"
[tool.ruff]
line-length = 120
target-version = "py313"
[tool.ruff.lint]
ignore = [
'E722', # Bare-except
]
[tool.ruff.format]
quote-style = "single"