""" Setup configuration for Composio LangGraph plugin """ from pathlib import Path from setuptools import setup setup( name="composio_langgraph", version="0.7.16-rc.1", author="Sawradip", author_email="sawradip@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.9,<4", install_requires=[ "composio_langchain>=0.5.0,<0.8.0", "langgraph<0.3.0", ], include_package_data=True, )