-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (43 loc) · 1013 Bytes
/
Copy pathpyproject.toml
File metadata and controls
46 lines (43 loc) · 1013 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
40
41
42
43
44
45
46
[project]
name = "ax-prontier-ai"
version = "0.1.0"
description = "AI agents for AX-Prontier"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.110,<1.0",
"beautifulsoup4>=4.12.3",
"markdownify>=0.12.1",
"uvicorn[standard]>=0.27,<1.0",
"pydantic>=2.6,<3.0",
"requests>=2.32.3",
"sqlalchemy>=2.0,<3.0",
"psycopg[binary]>=3.1,<4.0",
"python-dotenv>=1.0,<2.0",
"pyyaml>=6.0,<7.0",
"google-genai>=1.0,<2.0",
"sentence-transformers>=3.0,<4.0",
]
[project.optional-dependencies]
test = [
"httpx>=0.27,<1.0",
"pytest>=8.0,<9.0",
]
dev = [
"ruff>=0.8.0",
]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = [
"agents/library/tests",
"agents/main_agent/tests",
"agents/orchestrator/tests",
"agents/document_review/tests",
"agents/campus_map/tests",
"ingestion/tests",
]
markers = [
"integration: tests that may download local models or call external services",
]
[tool.setuptools.packages.find]
include = ["agents*", "shared*", "ingestion*"]
exclude = ["data*"]