15 lines
367 B
TOML
15 lines
367 B
TOML
[project]
|
|
name = "bdbot"
|
|
version = "0.1.0"
|
|
description = "Telegram bot for tracking birthdays and sending themed greetings"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"pyTelegramBotAPI >= 4.30.0",
|
|
"SQLAlchemy >= 2.0.46",
|
|
"psycopg2-binary >= 2.9.11",
|
|
"python-dotenv >= 1.2.1",
|
|
"APScheduler >= 3.11.2",
|
|
"pytz >= 2025.2",
|
|
]
|