forked from ComposioHQ/composio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 871 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (24 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
"""
Setup configuration for Composio OpenAI Agents plugin
"""
from pathlib import Path
from setuptools import find_packages, setup
setup(
name="composio_openai_agents",
version="0.18.0",
author="Composio",
author_email="tech@composio.dev",
description="Use Composio to get array of strongly typed tools for OpenAI Agents",
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",
packages=find_packages(),
install_requires=["openai-agents>=0.17.5", "composio"],
include_package_data=True,
)