-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (55 loc) · 1.43 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (55 loc) · 1.43 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[project]
name = "defaultline"
version = "0.1.0"
description = "Self-learning multi-agent debt collections system (built for the Riverline assignment)"
requires-python = ">=3.12"
dependencies = [
"temporalio>=1.8.0",
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"pydantic>=2.9.0",
"pydantic-settings>=2.5.0",
"tiktoken>=0.8.0",
"pyyaml>=6.0.2",
"redis>=5.0.0",
"asyncpg>=0.29.0",
"python-dotenv>=1.0.0",
"python-multipart>=0.0.18",
"httpx>=0.27.0",
]
[project.optional-dependencies]
anthropic = [
"anthropic>=0.40.0",
]
voice = [
"pipecat-ai[deepgram,rime,anthropic,silero,openai,daily,twilio]>=1.0.0",
"twilio>=9.0.0",
]
learning = [
"dspy-ai>=2.5.0",
"numpy>=2.0.0",
"scipy>=1.14.0",
"pandas>=2.2.0",
]
dev = [
"pytest>=8.3.0",
"pytest-asyncio>=0.24.0",
"ruff>=0.6.0",
"mypy>=1.11.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["agents", "apps", "learning"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"integration: integration smoke tests requiring the live API + external services (OpenAI/OpenRouter/Rime/Deepgram). Skipped by default; run with `pytest -m integration`.",
]
# Unmarked tests run by default; integration tests opted-in via -m integration.
addopts = "-m 'not integration'"