-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 885 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 885 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "fbi-crime-analyst-agent"
version = "0.6.0"
description = "BaseAgent framework — production-ready AI agent for OpenShift"
requires-python = ">=3.11"
dependencies = [
"fipsagents[server]",
]
[project.optional-dependencies]
feedback = [
"fipsagents[feedback]",
]
files = [
# Pulls in docling (text extraction) + python-magic (content-based
# MIME sniffing). Adds ~500MB to the container image because of
# docling's torch/transformers — leave opt-in unless the agent
# actively ingests files.
"fipsagents[files]",
]
memory = [
"fipsagents[memory]",
]
dev = [
"pytest",
"pytest-asyncio",
"pytest-cov",
"ruff",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]