-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 765 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[project]
name = "caltrain-bot"
version = "0.1.2"
description = "Caltrain schedule bot for Telegram"
readme = "README.md"
authors = [
{ name = "Dima Timofeev", email = "1127655+CuriousDima@users.noreply.github.com" }
]
requires-python = ">=3.11"
dependencies = [
"dspy>=3.1.3",
"loguru>=0.7.3",
"pydantic-settings>=2.13.1",
"pygtfs",
"python-dotenv>=1.2.2",
"python-telegram-bot>=22.7",
"sqlparse>=0.5.5",
]
[project.scripts]
caltrain-bot = "caltrain_bot:main"
[build-system]
requires = ["uv_build>=0.10.10,<0.11.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"ruff>=0.15.6",
"ty>=0.0.23",
]
[tool.uv.sources]
pygtfs = { git = "https://github.com/CuriousDima/pygtfs", branch = "master" }