-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (64 loc) · 1.82 KB
/
pyproject.toml
File metadata and controls
71 lines (64 loc) · 1.82 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
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "chevin"
version = "0.1.1"
description = "Multi-project agent orchestrator built on Claude Agent SDK"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [
{ name = "Andrei" }
]
dependencies = [
"claude-agent-sdk>=0.1.0",
"pydantic>=2.0",
"rich>=13.0", # Nice CLI output
"pyyaml>=6.0", # Project configs
"psutil>=5.9", # Process monitoring
"fastapi>=0.109", # HTTP API
"uvicorn>=0.27", # ASGI server
"websockets>=12.0", # WebSocket support
"httpx>=0.26", # HTTP client for CLI
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"ruff>=0.1",
]
voice = [
"pyaudio>=0.2",
"openai-whisper>=20231117", # For STT like legacy Kevin
"httpx>=0.26", # For ElevenLabs API calls
"piper-tts>=1.2.0", # Local TTS fallback
"huggingface_hub>=0.20.0", # For downloading Piper voices
"keyboard>=0.13", # For push-to-talk hotkey
]
voice-fast = [
"pyaudio>=0.2",
"faster-whisper>=0.10", # CTranslate2 backend for faster STT
"httpx>=0.26",
"piper-tts>=1.2.0",
"huggingface_hub>=0.20.0",
"keyboard>=0.13", # For push-to-talk hotkey
]
integrations = [
"gspread>=6.0", # Google Sheets
"google-api-python-client", # Google Calendar
]
sidekick = [
"google-cloud-firestore>=2.16", # Sidekick Web Firestore sync
"google-auth>=2.23", # Service account auth
]
[project.scripts]
chevin = "chevin.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/chevin"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]