28 lines
549 B
INI
28 lines
549 B
INI
[project]
|
|
name = "webmention"
|
|
version = "0.1.0"
|
|
description = "Simple Webmention server that saves webmentions to an SQLite database."
|
|
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",
|
|
]
|