27 lines
808 B
Python
27 lines
808 B
Python
"""
|
|
Setup configuration for Composio OpenAI plugin.
|
|
"""
|
|
|
|
from pathlib import Path
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name="composio_openai",
|
|
version="0.17.1",
|
|
author="Composio",
|
|
author_email="tech@composio.dev",
|
|
description="Use Composio to get an array of tools with your OpenAI Function Call.",
|
|
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=["openai>=2.42.0", "composio"],
|
|
include_package_data=True,
|
|
)
|