-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
85 lines (70 loc) · 1.72 KB
/
pyproject.toml
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
[project]
name = "AgentX"
version = "0.0.27"
dependencies = [
"typing~=3.7.4.3",
"ipython~=8.17.2",
"tqdm~=4.64.1",
"pydantic==2.5.3",
"setuptools~=68.1.2",
"gradio~=4.18.0",
"numpy~=1.26.2",
"uvicorn~=0.23.2",
"pydantic-core==2.14.6",
"requests~=2.31.0",
"transformers>=4.36.1",
"huggingface-hub>=0.20.1",
"absl-py==2.0.0",
"Jinja2~=3.1.2",
"websocket-client",
]
license = { text = "MIT" }
authors = [
{ name = "Erfan Zare Chavoshi", email = "[email protected]" }
]
readme = "README.md"
description = "AgentX: Seamlessly integrate intelligent agents into your projects. Empower your applications with advanced AI capabilities."
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.optional-dependencies]
rag = [
"faiss-cpu",
"sentence_transformers",
"pymupdf",
"python-docx"
]
torch = [
"torch",
"bitsandbytes",
"accelerate"
]
ollama = [
"ollama"
]
gguf = [
"llama-cpp-python"
]
all = [
"AgentX[rag,torch,ollama,gguf]"
]
[project.urls]
Homepage = "https://github.com/erfanzar/AgentX"
Issues = "https://github.com/erfanzar/AgentX/issues"
Documentation = "https://erfanzar.github.io/AgentX"
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src", ]
include = ["**/*.jinja2", "agentx", "*"]
[tool.setuptools.package-data]
"*" = ["*.jinja2"]
[project.scripts]
agentx = "agentx.cli:cli"