-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (59 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
63 lines (59 loc) · 1.22 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
59
60
61
62
63
[project]
name = "rag-manager"
version = "0.1.0"
description = "RAG Manager for document processing"
readme = "README.md"
requires-python = ">=3.12,<3.14"
dependencies = [
"fastapi>=0.124.2",
"ipython>=9.8.0",
"langgraph>=1.0.4",
"langchain-core>=0.3.0",
"typing-extensions>=4.15.0",
"uvicorn>=0.38.0",
"sqlalchemy>=2.0.0",
"psycopg2-binary>=2.9.0",
"pgvector>=0.3.0",
"pydantic-settings>=2.0.0",
"guardrails-ai>=0.5.10",
]
[project.optional-dependencies]
dev = [
"ruff>=0.14.0",
]
[tool.ruff]
target-version = "py312"
line-length = 120
fix = true
exclude = [
".git",
".venv",
"__pycache__",
"build",
"dist",
"*.egg-info",
".ruff_cache",
]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # Pyflakes
"I", # isort
"N", # pep8-naming
"UP", # pyupgrade
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"SIM", # flake8-simplify
]
ignore = [
"E501", # Line too long
]
fixable = ["ALL"]
unfixable = []
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"