-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.09 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (50 loc) · 1.09 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
57
58
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "atlas-rag"
version = "1.0.0"
description = "ATLAS — industrial-grade Agentic RAG research analyst for Aurora Station"
readme = "README.md"
requires-python = ">=3.12"
license = { text = "MIT" }
dependencies = [
"langgraph>=1.2,<2",
"langchain>=1.3,<2",
"langchain-core>=1.0,<2",
"langchain-openai>=1.3,<2",
"langchain-community>=0.4,<1",
"langchain-chroma>=0.2",
"fastapi>=0.115",
"uvicorn>=0.30",
"gradio>=5,<6",
"tavily-python>=0.7",
"pydantic>=2.10",
"pydantic-settings>=2.5",
]
[project.optional-dependencies]
dev = [
"pytest>=8",
"ruff>=0.6",
"httpx>=0.27",
]
pdf = [
"pypdf>=4",
]
ragas = [
"ragas>=0.2",
]
[project.scripts]
atlas = "atlas.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
atlas = ["py.typed"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"