-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 818 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 818 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
36
37
38
39
40
41
[project]
name = "tars"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"anthropic>=0.79.0",
"ollama>=0.6.1",
"python-dotenv>=1.2.1",
"sqlite-vec>=0.1.6",
"fastapi[standard]>=0.115.0",
"python-telegram-bot>=22.6",
"mcp>=1.26.0",
"openai>=2.24.0",
"stravalib>=2.4",
]
[project.scripts]
tars = "tars.cli:main"
tars-serve = "tars.cli:main_serve"
tars-email = "tars.cli:main_email"
tars-index = "tars.cli:main_index"
tars-telegram = "tars.cli:main_telegram"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"coverage>=7.13.4",
]
[tool.coverage.run]
source = ["tars"]
omit = ["tests/*"]
[tool.coverage.report]
show_missing = true
skip_empty = true