36 lines
738 B
INI
36 lines
738 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"
|
|
lint = "pylint webfinger"
|
|
|
|
[tool.pdm.dev-dependencies]
|
|
dev = [
|
|
"pylint>=2.15.9",
|
|
]
|
|
|
|
[tool.pylint.format]
|
|
indent-string = "\t"
|
|
|
|
[tool.pylint.messages_control]
|
|
extension-pkg-whitelist = "pydantic"
|
|
disable = [
|
|
"missing-final-newline"
|
|
] |