webfinger/pyproject.toml
a b5d038f0fe move to better packaging practices
pipenv not recommended apparently. switch to pdm and pyproject.toml with requirements.txt backup

make runnable
2022-12-07 23:40:51 -06:00

20 lines
424 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]