forked from VRSEN/agency-swarm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 945 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 setup, find_packages
# Read the contents of your requirements file
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='agency-swarm',
version='0.3.0',
author='VRSEN',
author_email='me@vrsen.ai',
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.7',
)