-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 838 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 838 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "agentfoundry"
version = "0.1.0"
description = "AgentFoundry: A developer-facing multi-agent RAG framework with MCP server integration"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Anvay", email = "anvatrive2324@gmail.com" }
]
requires-python = ">=3.9"
dependencies = [
"langchain>=0.2.0",
"langchain-google-genai>=0.0.5",
"chromadb>=0.4.0",
"faiss-cpu>=1.7.4",
"sentence-transformers>=2.2.2",
"fastmcp>=0.0.5",
"python-dotenv>=1.0.0",
"pydantic>=2.0.0",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["*"]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"black>=23.0",
"flake8>=6.0.0",
]