-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 792 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 792 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
"""Setup configuration for the composio crewai toolset"""
from pathlib import Path
from setuptools import setup
setup(
name="composio_crewai",
version="1.0.0-rc5",
author="Composio",
author_email="tech@composio.dev",
description="Use Composio to get an array of tools with your CrewAI 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.9,<4",
install_requires=["crewai>=0.51.0"],
include_package_data=True,
)