composio-langgraph 0.9.3__tar.gz → 0.10.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {composio_langgraph-0.9.3 → composio_langgraph-0.10.3}/PKG-INFO +2 -1
- {composio_langgraph-0.9.3 → composio_langgraph-0.10.3}/composio_langgraph.egg-info/PKG-INFO +2 -1
- {composio_langgraph-0.9.3 → composio_langgraph-0.10.3}/composio_langgraph.egg-info/requires.txt +1 -0
- {composio_langgraph-0.9.3 → composio_langgraph-0.10.3}/pyproject.toml +2 -1
- {composio_langgraph-0.9.3 → composio_langgraph-0.10.3}/setup.py +2 -2
- {composio_langgraph-0.9.3 → composio_langgraph-0.10.3}/README.md +0 -0
- {composio_langgraph-0.9.3 → composio_langgraph-0.10.3}/composio_langgraph/__init__.py +0 -0
- {composio_langgraph-0.9.3 → composio_langgraph-0.10.3}/composio_langgraph/provider.py +0 -0
- {composio_langgraph-0.9.3 → composio_langgraph-0.10.3}/composio_langgraph/py.typed +0 -0
- {composio_langgraph-0.9.3 → composio_langgraph-0.10.3}/composio_langgraph.egg-info/SOURCES.txt +0 -0
- {composio_langgraph-0.9.3 → composio_langgraph-0.10.3}/composio_langgraph.egg-info/dependency_links.txt +0 -0
- {composio_langgraph-0.9.3 → composio_langgraph-0.10.3}/composio_langgraph.egg-info/top_level.txt +0 -0
- {composio_langgraph-0.9.3 → composio_langgraph-0.10.3}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: composio-langgraph
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.10.3
|
|
4
4
|
Summary: Use Composio to get array of tools with LangGraph Agent Workflows.
|
|
5
5
|
Home-page: https://github.com/ComposioHQ/composio
|
|
6
6
|
Author: composio
|
|
@@ -12,6 +12,7 @@ Classifier: Operating System :: OS Independent
|
|
|
12
12
|
Requires-Python: >=3.9,<4
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
Requires-Dist: langgraph
|
|
15
|
+
Requires-Dist: composio
|
|
15
16
|
Dynamic: author
|
|
16
17
|
Dynamic: home-page
|
|
17
18
|
Dynamic: requires-python
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: composio-langgraph
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.10.3
|
|
4
4
|
Summary: Use Composio to get array of tools with LangGraph Agent Workflows.
|
|
5
5
|
Home-page: https://github.com/ComposioHQ/composio
|
|
6
6
|
Author: composio
|
|
@@ -12,6 +12,7 @@ Classifier: Operating System :: OS Independent
|
|
|
12
12
|
Requires-Python: >=3.9,<4
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
Requires-Dist: langgraph
|
|
15
|
+
Requires-Dist: composio
|
|
15
16
|
Dynamic: author
|
|
16
17
|
Dynamic: home-page
|
|
17
18
|
Dynamic: requires-python
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "composio-langgraph"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.10.3"
|
|
4
4
|
description = "Use Composio to get array of tools with LangGraph Agent Workflows."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.9,<4"
|
|
@@ -14,6 +14,7 @@ classifiers = [
|
|
|
14
14
|
]
|
|
15
15
|
dependencies = [
|
|
16
16
|
"langgraph",
|
|
17
|
+
"composio",
|
|
17
18
|
]
|
|
18
19
|
|
|
19
20
|
[project.urls]
|
|
@@ -8,7 +8,7 @@ from setuptools import setup
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name="composio_langgraph",
|
|
11
|
-
version="0.
|
|
11
|
+
version="0.10.3",
|
|
12
12
|
author="composio",
|
|
13
13
|
author_email="tech@composio.dev",
|
|
14
14
|
description="Use Composio to get array of tools with LangGraph Agent Workflows",
|
|
@@ -21,6 +21,6 @@ setup(
|
|
|
21
21
|
"Operating System :: OS Independent",
|
|
22
22
|
],
|
|
23
23
|
python_requires=">=3.9,<4",
|
|
24
|
-
install_requires=["langgraph"],
|
|
24
|
+
install_requires=["langgraph", "composio"],
|
|
25
25
|
include_package_data=True,
|
|
26
26
|
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{composio_langgraph-0.9.3 → composio_langgraph-0.10.3}/composio_langgraph.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{composio_langgraph-0.9.3 → composio_langgraph-0.10.3}/composio_langgraph.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|