-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 831 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (29 loc) · 831 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
28
29
30
31
"""Setup script for multiagent package"""
from setuptools import setup, find_packages
setup(
name="multiagent",
version="0.1.0",
packages=find_packages(),
install_requires=[
"click>=8.1.0",
"rich>=13.0.0",
"pyyaml>=6.0.0",
"requests>=2.31.0",
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"asyncpg>=0.29.0",
"redis>=5.0.0",
"structlog>=23.1.0",
"websockets>=12.0",
],
entry_points={
"console_scripts": [
"multiagent=multiagent.cli.commands:cli",
],
},
python_requires=">=3.11",
author="Multi-Agent Team",
description="Multi-agent orchestration system for software development",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
)