-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1018 Bytes
/
Copy pathpyproject.toml
File metadata and controls
50 lines (43 loc) · 1018 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
42
43
44
45
46
47
48
49
50
[project]
name = "voice-sales-agent"
version = "0.1.0"
description = "AI Calling Agent MVP — outbound voice sales agent with funnel state machine"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115",
"python-multipart>=0.0.9",
"uvicorn[standard]>=0.30",
"pydantic>=2.7",
"pydantic-settings>=2.4",
"sqlalchemy>=2.0",
"greenlet>=3.0",
"aiosqlite>=0.20",
"twilio>=9.0",
"openai>=1.40",
"httpx>=0.27",
"structlog>=24.0",
"apscheduler>=3.10",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"ruff>=0.6",
]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["app*"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "W", "B", "UP"]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]