mirror of
https://github.com/ComposioHQ/composio.git
synced 2026-09-22 11:46:35 +08:00
684a392816
## Summary - bump the Python SDK and all provider package versions to `0.21.1` - regenerate the root `uv.lock` from the updated workspace metadata - keep the existing coordinated changelog as the release authority ## Verification - `pnpm test:release-workflow` - `make build` (26 artifacts) - `python -m twine check python/dist/*`
33 lines
961 B
Python
33 lines
961 B
Python
"""
|
|
Setup configuration for Composio Gemin plugin
|
|
"""
|
|
|
|
from pathlib import Path
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name="composio_autogen",
|
|
version="0.21.1",
|
|
author="Composio",
|
|
author_email="tech@composio.dev",
|
|
description="Use Composio to get an array of tools with your Autogen agent.",
|
|
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=[
|
|
# ag2 1.x removed the top-level `autogen` namespace this provider imports.
|
|
"ag2>=0.14,<1.0",
|
|
"flaml==2.6.0",
|
|
"autogen_core>=0.7.5",
|
|
"composio",
|
|
],
|
|
include_package_data=True,
|
|
)
|