-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
142 lines (129 loc) · 4.19 KB
/
Copy pathpyproject.toml
File metadata and controls
142 lines (129 loc) · 4.19 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
[build-system]
requires = ["hatchling>=1.0.0"]
build-backend = "hatchling.build"
[project]
name = "siphon-ai"
version = "0.1.4"
description = "Build calling agents in minutes, not months. The missing infrastructure layer for AI calling. Siphon handles state, interruptions, and scaling so you can ship reliable agents in minutes, not months."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [
{ name = "BLACKDWARF", email = "hi@blackdwarf.in" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Natural Language :: English",
"Typing :: Typed",
]
keywords = [
"livekit",
"livekit-agents",
"telephony",
"sip",
"pstn",
"webrtc",
"voice-ai",
"voice-agents",
"ai-telephony",
"ai-calling",
"calling-agent",
"contact-center",
"call-center",
"ivr",
"conversational-ai",
"speech-to-text",
"text-to-speech",
"realtime",
"realtime-ai",
"voice-to-voice",
"telephony-api",
"voice-communications",
"ai-phone-systems",
"automated-calling",
"voice-assistant",
"ivr-systems",
"call-routing",
"voice-messaging",
"contact-center-solutions",
"call-analytics",
"voice-workflow",
"telephony-automation",
"voice-integration",
"ai-call-processing",
"voice-orchestration",
"telephony-devices",
"voice-infrastructure",
"telephony-platform",
"voice-api",
"telephony-sdk",
"voice-telephony",
"ai-voice-systems",
"voice-automation",
"telephony-integrations",
"voice-communication-platform",
"telephony-ai-solutions",
"voice-contact-center",
"telephony-crm-integration",
"ai-calling-crm-integration",
"voice-calling-platform",
"telephony-voice-platform",
]
# For now, declare the runtime dependencies directly. This means
# `pip install siphon-ai` (or `uv add siphon-ai`) will install
# everything the framework needs at runtime.
# You can later refine this into smaller core deps + extras.
dependencies = [
"livekit>=0.20.0",
"livekit-api>=0.8.0",
"livekit-agents[turn-detector,silero]>=1.5.1",
"boto3>=1.34.0",
"python-dotenv>=1.0.0",
"livekit-plugins-noise-cancellation>=0.2.0",
]
[project.optional-dependencies]
# Database backends (choose one or more)
mongodb = ["pymongo>=4.7.0", "motor>=3.5.0", "certifi>=2024.0.0"]
redis = ["redis>=5.0.0"]
postgres = ["sqlalchemy>=2.0.0", "asyncpg>=0.29.0", "psycopg2-binary>=2.9.0"]
mysql = ["sqlalchemy>=2.0.0", "aiomysql>=0.2.0", "pymysql>=1.1.0"]
all-db = ["siphon-ai[mongodb,redis,postgres,mysql]"]
# AI provider plugins (choose one or more)
openai = ["livekit-agents[openai]>=1.5.1"]
google = ["livekit-agents[google]>=1.5.1"]
anthropic = ["livekit-agents[anthropic]>=1.5.1"]
groq = ["livekit-agents[groq]>=1.5.1"]
mistralai = ["livekit-agents[mistralai]>=1.5.1"]
deepgram = ["livekit-agents[deepgram]>=1.5.1"]
assemblyai = ["livekit-agents[assemblyai]>=1.5.1"]
cartesia = ["livekit-agents[cartesia]>=1.5.1"]
sarvam = ["livekit-agents[sarvam]>=1.5.1"]
elevenlabs = ["livekit-agents[elevenlabs]>=1.5.1"]
rime = ["livekit-agents[rime]>=1.5.1"]
all-llm = ["siphon-ai[openai,google,anthropic,groq,mistralai,deepgram,assemblyai,cartesia,sarvam,elevenlabs,rime]"]
# Google Calendar integration
gcalendar = ["google-auth-oauthlib>=1.2.0", "google-auth-httplib2>=0.2.0", "google-api-python-client>=2.130.0"]
# Dev / test dependencies
dev = ["pytest>=8.0.0", "pytest-asyncio>=0.23.0", "pytest-cov>=4.1.0"]
test = ["siphon-ai[dev]"]
# Everything
all = ["siphon-ai[all-db,all-llm,gcalendar]"]
[project.urls]
Homepage = "https://siphon.blackdwarf.in/"
Source = "https://github.com/blackdwarftech/siphon"
[tool.mypy]
# Silence missing import errors for optional dependencies
disable_error_code = ["import-not-found", "import-untyped", "untyped-decorator"]
# Prevent the "Any" contagion from triggering strict errors
# (These flags are normally True in strict mode)
warn_return_any = false
disallow_any_generics = false
disallow_subclassing_any = false
disallow_untyped_calls = false
[tool.hatch.build.targets.wheel]
packages = ["siphon"]