26 lines
552 B
TOML
26 lines
552 B
TOML
[project]
|
|
name = "evil-blocker"
|
|
version = "0.1.0"
|
|
description = "protect your personal server from abusive activity"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "ZhuangYumin", email = "zymx@pm.me" }
|
|
]
|
|
requires-python = ">=3.12.11"
|
|
dependencies = [
|
|
"fastapi>=0.116.1",
|
|
"jinja2>=3.1.6",
|
|
"loguru>=0.7.3",
|
|
"psycopg2-binary>=2.9.10",
|
|
"sqlmodel>=0.0.24",
|
|
"tenacity>=9.1.2",
|
|
"tqdm>=4.67.1",
|
|
]
|
|
|
|
[project.scripts]
|
|
evil-blocker = "evil_blocker:main"
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.8.15,<0.9.0"]
|
|
build-backend = "uv_build"
|