-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (43 loc) · 1001 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
48
49
[project]
name = "langchain-user-authn"
version = "1.0.0"
description = """\
An example CLI tool in Python demonstrating how to integrate Pangea's AuthN \
and AuthZ services 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.9.0.post1",
"flask>=3.1.0",
"langchain-community>=0.3.16",
"langchain-openai>=0.3.2",
"langchain>=0.3.16",
"pangea-sdk>=5.4.0",
"pydantic>=2.10.6",
"python-dotenv>=1.0.1",
"python-magic-bin>=0.4.14; platform_system == 'Windows'",
"python-magic>=0.4.27",
"unstructured[md]>=0.16.17",
]
[tool.uv]
dev-dependencies = [
"mypy>=1.14.1",
"ruff>=0.9.3",
]
[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"]