-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (41 loc) · 937 Bytes
/
pyproject.toml
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
[project]
name = "langchain-rag-authz"
version = "1.0.0"
description = """\
An example CLI tool in Python that demonstrates how to integrate Pangea's\
AuthZ service into a LangChain app to filter out RAG documents based on user\
permissions.\
"""
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"click>=8.1.8",
"faiss-cpu>=1.10.0",
"langchain-community>=0.3.16",
"langchain-openai>=0.3.4",
"langchain>=0.3.17",
"pangea-sdk>=5.4.0",
"pydantic>=2.10.6",
"python-magic>=0.4.27",
"python-magic-bin>=0.4.14; platform_system == 'Windows'",
"unstructured[md]==0.16.20",
]
[tool.uv]
dev-dependencies = [
"mypy>=1.15.0",
"ruff>=0.9.5",
]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [
# ruff defaults
"E4",
"E7",
"E9",
"F",
"I", # isort
"PTH", # flake8-use-pathlib
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "F403"]