forked from ComposioHQ/composio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 734 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 734 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
[tool.uv.workspace]
members = [
"python",
"python/providers/anthropic",
"python/providers/crewai",
"python/providers/gemini",
"python/providers/google",
"python/providers/google_adk",
"python/providers/langchain",
"python/providers/openai",
"python/providers/openai_agents",
]
[tool.uv.sources]
# Provider packages
composio-anthropic = { workspace = true }
composio-crewai = { workspace = true }
composio-langchain = { workspace = true }
composio-google = { workspace = true }
composio-google-adk = { workspace = true }
composio-openai = { workspace = true }
composio-openai-agents = { workspace = true }
composio = { workspace = true }
[dependency-groups]
dev = [
"composio==1.0.0rc6",
]