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