-
Notifications
You must be signed in to change notification settings - Fork 787
/
setup.py
27 lines (25 loc) · 944 Bytes
/
setup.py
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
from setuptools import find_packages, setup
# Read the contents of your requirements file
with open("requirements.txt") as f:
requirements = f.read().splitlines()
setup(
name="agency-swarm",
version="0.4.3",
author="VRSEN",
author_email="[email protected]",
description="An opensource agent orchestration framework built on top of the latest OpenAI Assistants API.",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/VRSEN/agency-swarm",
packages=find_packages(exclude=["tests", "tests.*"]),
install_requires=requirements,
classifiers=[
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
],
entry_points={
"console_scripts": ["agency-swarm=agency_swarm.cli:main"],
},
python_requires=">=3.10",
)