-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (49 loc) · 1.5 KB
/
setup.py
File metadata and controls
50 lines (49 loc) · 1.5 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from setuptools import setup, find_packages
setup(
name="muvius",
version="0.2.0",
packages=find_packages(),
include_package_data=True,
install_requires=[
"click>=8.1.7",
"fastapi>=0.104.1",
"uvicorn>=0.24.0",
"requests>=2.31.0",
"pydantic>=2.5.2",
"python-dotenv>=1.0.0",
"pyyaml>=6.0.1",
"rich>=13.7.0",
"typer>=0.9.0",
"openai>=1.3.0",
"numpy>=1.24.0",
"pandas>=2.0.0",
"scikit-learn>=1.3.0",
"python-multipart>=0.0.6",
"aiohttp>=3.9.0",
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"httpx>=0.25.0",
],
entry_points={
"console_scripts": [
"muvius=muvius.cli:cli",
],
},
author="MUVIO AI",
author_email="info@muvio.ai",
description="A framework for building and managing AI agents with memory systems and API endpoints",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/tnbtinai/muvius-a2a-framework",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
python_requires=">=3.8",
)