-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathsetup.py
81 lines (75 loc) · 2.29 KB
/
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
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
from setuptools import setup, find_packages
__version__ = "0.5.0"
LICENSE = "GNU General Public License v3 or later (GPLv3+)"
def get_long_description():
with open("README.md") as file:
return file.read()
setup(
name="agentforge",
version="0.5.0",
description="AI-driven task automation system",
author="John Smith, Ansel Anselmi",
author_email="contact@agentforge.net",
url="https://github.com/DataBassGit/AgentForge",
include_package_data=True,
packages=find_packages(where="src"),
package_dir={"": "src"},
entry_points={
"console_scripts": [
"agentforge=agentforge.cli:main"
]
},
install_requires=[
"chromadb==0.6.2",
"numpy<2.0.0; python_version<'3.12'",
"numpy>=2.0.0; python_version>='3.12'",
"sentence-transformers",
"wheel",
"groq",
"pypdf",
"colorama",
"spacy",
"termcolor==2.4.0",
"openai",
"anthropic",
"google-api-python-client",
"beautifulsoup4",
"browse",
"scipy",
"discord.py",
"semantic-text-splitter",
"google-generativeai",
"PyYAML",
"ruamel.yaml",
"requests",
"ruamel.yaml",
"xmltodict",
"setuptools>=70.0.0 ", # not directly required, pinned by Snyk to avoid a vulnerability
],
extras_require={
"other": [
"matplotlib~=3.9.2",
"umap~=0.1.1",
"cv2",
"pytesseract"
],
},
license=LICENSE,
long_description=get_long_description(),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
f"License :: OSI Approved :: {LICENSE}",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
python_requires=">=3.9",
package_data={
'agentforge.utils.guiutils': ['discord_client.py'],
'': ['*.yaml'], # Include your file types as needed
},
)