-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
144 lines (135 loc) · 3.38 KB
/
pyproject.toml
File metadata and controls
144 lines (135 loc) · 3.38 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "react-agent-framework"
version = "0.12.0"
description = "Production-ready AI agent framework with multi-agent systems (Layer 3), complete infrastructure (Layer 4), MCP support, environments, reasoning strategies, objectives, memory, and built-in tools"
authors = [
{name = "Marcos", email = "marcosf63@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
keywords = ["ai", "agent", "react", "llm", "openai", "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",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"openai>=1.0.0",
"python-dotenv>=1.0.0",
"duckduckgo-search>=4.0.0",
"typer>=0.9.0",
"rich>=13.0.0",
"requests>=2.31.0",
]
[project.optional-dependencies]
mcp = [
"mcp>=1.0.0",
]
anthropic = [
"anthropic>=0.18.0",
]
google = [
"google-generativeai>=0.3.0",
]
all-providers = [
"anthropic>=0.18.0",
"google-generativeai>=0.3.0",
]
search = [
"duckduckgo-search>=4.0.0",
]
computation = [
# No extra dependencies - uses stdlib
]
filesystem = [
# No extra dependencies - uses stdlib
]
all-tools = [
"duckduckgo-search>=4.0.0",
]
# Chat memory (conversation history)
chat-sqlite = [
# SQLite is stdlib - no dependencies needed
]
chat-postgres = [
"psycopg2-binary>=2.9.0",
]
all-chat = [
"psycopg2-binary>=2.9.0",
]
# Knowledge memory (RAG / semantic search)
knowledge-chroma = [
"chromadb>=0.4.0",
]
knowledge-faiss = [
"faiss-cpu>=1.7.4",
"numpy>=1.24.0",
]
all-knowledge = [
"chromadb>=0.4.0",
"faiss-cpu>=1.7.4",
"numpy>=1.24.0",
]
# Legacy memory (backward compatibility)
memory-chroma = [
"chromadb>=0.4.0",
]
memory-faiss = [
"faiss-cpu>=1.7.4",
"numpy>=1.24.0",
]
all-memory = [
"chromadb>=0.4.0",
"faiss-cpu>=1.7.4",
"numpy>=1.24.0",
"psycopg2-binary>=2.9.0",
]
all = [
"anthropic>=0.18.0",
"google-generativeai>=0.3.0",
"chromadb>=0.4.0",
"faiss-cpu>=1.7.4",
"numpy>=1.24.0",
"psycopg2-binary>=2.9.0",
"mcp>=1.0.0",
]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
]
[project.urls]
Homepage = "https://marcosf63.github.io/react-agent-framework/"
Documentation = "https://marcosf63.github.io/react-agent-framework/"
Repository = "https://github.com/marcosf63/react-agent-framework"
Issues = "https://github.com/marcosf63/react-agent-framework/issues"
[project.scripts]
react-agent = "react_agent_framework.cli.app:main"
[tool.setuptools.packages.find]
include = ["react_agent_framework*"]
[tool.black]
line-length = 100
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
[tool.ruff]
line-length = 100
target-version = "py38"
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
ignore_missing_imports = true