jabnews/pyproject.toml
2026-03-22 18:07:16 +03:00

27 lines
483 B
TOML

[project]
name = "jabnews"
version = "0.1.0"
description = "Jabber bot for broadcasting RSS news to conferences"
requires-python = ">=3.12"
dependencies = [
"slixmpp>=1.8",
"feedparser>=6.0",
"aiosqlite>=0.20",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.uv]
dev-dependencies = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"