22 lines
513 B
INI
22 lines
513 B
INI
[project]
|
|
name = "webfinger"
|
|
version = "1"
|
|
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"
|