27 lines
480 B
TOML
27 lines
480 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"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"pytest-asyncio>=0.23",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|