-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 858 Bytes
/
Copy pathpyproject.toml
File metadata and controls
45 lines (39 loc) · 858 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
[project]
name = "aegis"
version = "0.9.2"
description = "AEGIS - Autonomous Enterprise Graph Intelligence System"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115",
"uvicorn[standard]>=0.30",
"langchain>=0.3",
"langgraph>=0.4",
"langsmith>=0.2",
"langserve>=0.3",
"pydantic>=2.7",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"httpx>=0.27",
"ruff>=0.6",
"mypy>=1.11",
"pip-audit>=2.7",
]
[tool.ruff]
line-length = 110
target-version = "py311"
extend-exclude = ["apps/web"]
[tool.ruff.lint]
# Fail CI on real breakages, not a 200-issue style rewrite of the graph.
select = ["E9", "F63", "F7", "F82"]
[tool.black]
line-length = 110
[tool.mypy]
python_version = "3.11"
warn_return_any = false
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"