-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.13 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
[project]
name = "rag"
version = "1.0.0"
description = "Retrieval-Augmented Generation Application"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.121.0",
"groq>=1.0.0",
"inngest>=0.5.11",
"llama-index-core>=0.14.7",
"llama-index-readers-file>=0.5.4",
"nest-asyncio>=1.6.0",
"openai>=2.7.1",
"pydantic-settings>=2.12.0",
"python-docx>=1.2.0",
"python-dotenv>=1.2.1",
"qdrant-client>=1.15.1",
"sentence-transformers>=5.2.0",
"streamlit>=1.51.0",
"uvicorn>=0.38.0",
]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"ruff>=0.14.0",
"mypy>=1.19.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/rag", "frontend"]
[tool.pytest.ini_options]
pythonpath = ["src", "frontend"]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.ruff]
line-length = 88
target-version = "py313"
src = ["src", "frontend", "tests"]
[tool.ruff.lint]
select = ["E", "W", "F", "I", "UP", "B", "C4", "SIM"]
[tool.mypy]
python_version = "3.13"
strict = true
mypy_path = "src"