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
37 lines (36 loc) · 874 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (36 loc) · 874 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
[project]
name = "composio"
version = "0.18.0"
description = "SDK for integrating Composio with your applications."
readme = "README.md"
requires-python = ">=3.10,<4"
dependencies = [
"pysher>=1.0.8",
"pydantic>=2.13.4",
"composio-client==1.42.0",
"typing-extensions>=4.15.0",
"openai>=2.42.0",
"json-schema-to-pydantic>=0.4.11",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[dependency-groups]
dev = [
"composio",
"nox>=2026.4.10",
"pytest>=9.1.0",
"pytest-timeout>=2.4.0",
"pytest-mock>=3.15.1",
"requests>=2.34.2",
"ruff>=0.15.17",
# Langchain provider demo
"langchain_openai==1.3.3",
"fastapi>=0.137.1",
"twine>=6.2.0",
"click>=8.4.1",
"semver>=3.0.4",
"tomli>=2.4.1",
]