webfinger/pyproject.toml

22 lines
513 B
INI
Raw Normal View History

[project]
name = "webfinger"
2022-12-10 10:34:05 +00:00
version = "2"
description = "Simple WebFinger server that returns static resources. Written with Python and FastAPI."
authors = [
{name = "a", email = "a@trwnh.com"},
]
dependencies = [
"fastapi>=0.88.0",
"uvicorn[standard]>=0.20.0",
]
requires-python = ">=3.10"
license = {text = "AGPL"}
[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"
[tool.pdm.scripts]
dev = "uvicorn webfinger:app --port 7033 --reload"
start = "python -m webfinger"