-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.15 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
[project]
name = "ai_agent"
version = "0.1.1"
description = "AI imaging agent with Gradio UI and RAG pipeline"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"faiss-cpu==1.11.0.post1",
"numpy==2.2.6",
"pydantic==2.11.7",
"sentence-transformers==5.1.0",
"openai==2.1.0",
"pydantic-ai[mcp]==1.0.14",
"requests==2.32.4",
"python-dotenv==1.1.1",
"gradio==5.42.0",
"json5==0.12.0",
"pillow==11.3.0",
"nibabel==5.3.2",
"tifffile==2025.5.10",
"pydicom==3.0.1",
"imageio==2.37.0",
"rdflib==7.4.0",
"sparqlwrapper==2.0.0",
"plotly==6.5.0",
"repocards==0.1.2",
"pyyaml==6.0.2",
]
[project.scripts]
ai-agent = "ai_agent.cli:main"
ai_agent = "ai_agent.cli:main"
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"ai_agent" = ["**/*.json", "**/*.yaml", "**/*.yml", "**/*.txt"]
[project.optional-dependencies]
dev = [
"pytest",
"ruff",
"black",
"mypy",
"types-requests",
"mkdocs-material",
]