26 lines
535 B
TOML
26 lines
535 B
TOML
[project]
|
|
name = "gitea-signup-gate"
|
|
version = "0.1.0"
|
|
description = "Self-service activation gate for manually-confirmed Gitea registrations"
|
|
authors = [
|
|
{ name = "h", email = "h@kotikot.com" }
|
|
]
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"fastapi>=0.121.2",
|
|
"httpx>=0.28.1",
|
|
"pydantic-settings>=2.12.0",
|
|
"rich>=14.2.0",
|
|
"uvicorn>=0.38.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src"]
|
|
|
|
[tool.hatch.build.sources]
|
|
"src" = ""
|