-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (49 loc) · 1.66 KB
/
setup.py
File metadata and controls
52 lines (49 loc) · 1.66 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
"""Setup script for ACE RAG Gemini."""
from setuptools import setup, find_packages
from pathlib import Path
# Read README
readme_file = Path(__file__).parent / "README.md"
long_description = ""
if readme_file.exists():
long_description = readme_file.read_text(encoding="utf-8")
setup(
name="alphaagent-ace",
version="0.1.0",
description="AlphaAgent ACE Framework - Adaptive Cognitive Evolution for RAG with Multi-LLM Support",
long_description=long_description,
long_description_content_type="text/markdown",
author="SourceShift.io",
url="https://github.com/SourceShift/alphaagent-ace",
packages=find_packages(exclude=["tests", "examples"]),
install_requires=[
"google-generativeai>=0.3.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"faiss-cpu>=1.7.4",
"numpy>=1.24.0",
"PyPDF2>=3.0.0",
"python-dateutil>=2.8.0",
],
extras_require={
"dev": [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"black>=23.0.0",
"flake8>=6.0.0",
"mypy>=1.5.0",
]
},
python_requires=">=3.9",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
keywords="rag retrieval-augmented-generation gemini ace adaptive-learning nlp",
)