-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathsetup.py
More file actions
180 lines (175 loc) · 4.8 KB
/
Copy pathsetup.py
File metadata and controls
180 lines (175 loc) · 4.8 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
# Copyright(C) 2025-2026 Advanced Micro Devices, Inc. All rights reserved.
# SPDX-License-Identifier: MIT
import re
from setuptools import setup
with open("src/gaia/version.py", encoding="utf-8") as fp:
version_content = fp.read()
version_match = re.search(r'__version__\s*=\s*["\']([^"\']+)["\']', version_content)
if not version_match:
raise ValueError("Unable to find version string in version.py")
gaia_version = version_match.group(1)
tkml_version = "5.0.4"
setup(
name="amd-gaia",
version=gaia_version,
description="GAIA is a lightweight agent framework designed for the edge and AI PCs.",
author="AMD",
url="https://github.com/amd/gaia",
license="MIT",
package_dir={"": "src"},
packages=[
"gaia",
"gaia.llm",
"gaia.llm.providers",
"gaia.audio",
"gaia.chat",
"gaia.database",
"gaia.talk",
"gaia.testing",
"gaia.utils",
"gaia.apps",
"gaia.apps.llm",
"gaia.apps.summarize",
"gaia.eval",
"gaia.rag",
"gaia.mcp",
"gaia.mcp.servers",
"gaia.agents",
"gaia.agents.base",
"gaia.agents.blender",
"gaia.agents.blender.core",
"gaia.agents.chat",
"gaia.agents.chat.tools",
"gaia.agents.docker",
"gaia.agents.emr",
"gaia.agents.emr.dashboard",
"gaia.agents.jira",
"gaia.agents.code",
"gaia.agents.code.orchestration",
"gaia.agents.code.orchestration.factories",
"gaia.agents.code.orchestration.steps",
"gaia.agents.code.orchestration.workflows",
"gaia.agents.code.prompts",
"gaia.agents.code.tools",
"gaia.agents.code.validators",
"gaia.agents.routing",
"gaia.api",
],
package_data={
"gaia.eval": [
"webapp/*.json",
"webapp/*.js",
"webapp/*.md",
"webapp/public/*.html",
"webapp/public/*.css",
"webapp/public/*.js",
],
},
install_requires=[
"openai",
"pydantic>=2.9.2",
"transformers",
"accelerate",
"python-dotenv",
"aiohttp",
"rich",
"watchdog>=2.1.0",
"pillow>=9.0.0",
],
extras_require={
"api": [
"fastapi>=0.115.0",
"uvicorn>=0.32.0",
"python-multipart>=0.0.9",
],
"audio": [
"torch>=2.0.0,<2.4",
"torchvision<0.19.0",
"torchaudio",
],
"blender": [
"bpy",
],
"mcp": [
"mcp>=1.1.0",
"starlette",
"uvicorn",
],
"dev": [
"pytest",
"pytest-benchmark",
"pytest-mock",
"pytest-asyncio",
"memory_profiler",
"matplotlib",
"adjustText",
"plotly",
"black",
"pylint",
"isort",
"flake8",
"autoflake",
"mypy",
"bandit",
"responses",
"requests",
],
"eval": [
"anthropic",
"bs4",
"scikit-learn>=1.5.0",
"numpy>=2.0,<2.3.0",
"pypdf",
],
"talk": [
"pyaudio",
"openai-whisper",
"numpy==1.26.4",
"kokoro>=0.3.1",
"soundfile",
"sounddevice",
],
"youtube": [
"llama-index-readers-youtube-transcript",
],
"rag": [
"pypdf",
"pymupdf>=1.24.0",
"sentence-transformers",
"faiss-cpu>=1.7.0",
],
"lint": [
"black",
"pylint",
"isort",
"flake8",
"autoflake",
"mypy",
"bandit",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
entry_points={
"console_scripts": [
"gaia = gaia.cli:main",
"gaia-cli = gaia.cli:main",
"gaia-mcp = gaia.mcp.mcp_bridge:main",
"gaia-mcp-atlassian = gaia.mcp.atlassian_mcp:main",
"gaia-emr = gaia.agents.emr.cli:main",
]
},
python_requires=">=3.10",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
include_package_data=True,
)