chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:38:34 +08:00
commit 0549b088a4
2405 changed files with 810255 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
"""
Setup configuration for Composio LangGraph plugin
"""
from pathlib import Path
from setuptools import setup
setup(
name="composio_langgraph",
version="0.17.1",
author="composio",
author_email="tech@composio.dev",
description="Use Composio to get array of tools with LangGraph Agent Workflows",
long_description=(Path(__file__).parent / "README.md").read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
url="https://github.com/ComposioHQ/composio",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires=">=3.10,<4",
install_requires=["langgraph>=1.2.5", "composio"],
include_package_data=True,
)