webmention/pyproject.toml

29 lines
549 B
INI
Raw Normal View History

2023-11-22 22:02:08 +00:00
[project]
name = "webmention"
version = "0.1.0"
2023-11-22 22:05:03 +00:00
description = "Simple Webmention server that saves webmentions to an SQLite database."
2023-11-22 22:02:08 +00:00
authors = [
{name = "a", email = "a@trwnh.com"},
]
dependencies = [
"fastapi>=0.104.1",
"uvicorn[standard]>=0.23.2",
"httpx>=0.25.0",
"validators>=0.22.0",
"beautifulsoup4>=4.12.2",
]
requires-python = ">=3.11"
readme = "README.md"
license = {text = "AGPL"}
[tool.ruff.format]
indent-style = "tab"
[tool.pdm.dev-dependencies]
lint = [
"ruff>=0.1.3",
]
test = [
"pytest>=7.4.3",
]