28 lines
655 B
TOML
28 lines
655 B
TOML
[project]
|
|
name = "journal-bot"
|
|
version = "0.1.0"
|
|
description = "Telegram-driven daily journal ingestion for Obsidian"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"pydantic>=2.7",
|
|
"pydantic-settings>=2.3",
|
|
"httpx>=0.27",
|
|
"openai>=1.40",
|
|
"faster-whisper>=1.0",
|
|
"python-telegram-bot>=21.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest>=8.0", "pytest-asyncio>=0.23", "pytest-mock>=3.12", "respx>=0.21", "pyyaml>=6.0"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/journal_bot"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
asyncio_mode = "auto"
|