mirror of
https://github.com/nikdoof/simple-webfinger.git
synced 2025-12-13 10:22:15 +00:00
32 lines
706 B
TOML
32 lines
706 B
TOML
[tool.poetry]
|
|
name = "simple-webfinger"
|
|
version = "0.1.1"
|
|
description = "A simple, Flask-based webfinger handler."
|
|
authors = ["Andrew Williams <andy@tensixtyone.com>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
Flask = "^3.0.3"
|
|
PyYAML = "^6.0.2"
|
|
pydantic = "^2.8.2"
|
|
prometheus-flask-exporter = "^0.23.1"
|
|
gunicorn = "^23.0.0"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^8.0.0"
|
|
ruff = "^0.10.0"
|
|
pytest-mock = "^3.12.0"
|
|
pytest-flask = "^1.3.0"
|
|
|
|
[tool.poetry.group.github]
|
|
optional = true
|
|
|
|
[tool.poetry.group.github.dependencies]
|
|
pytest-github-actions-annotate-failures = "^0.3.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|