This repository was archived by the owner on Feb 11, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
52 lines (48 loc) · 1.39 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
[project]
name = "basic-pipeline"
version = "0.1.0"
description = ""
authors = [
{name = "Carolin Walter",email = "carolin.walter@usu.com"}
]
readme = "README.md"
requires-python = "==3.13.5"
dependencies = [
"langchain-community (>=0.3.27,<0.4.0)",
"langchain-core (>=0.3.68,<0.4.0)",
"langchain-huggingface (>=0.3.0,<0.4.0)",
"langchain-ollama (>=0.3.4,<0.4.0)",
"pyyaml (>=6.0.2,<7.0.0)",
"sentence-transformers (>=5.0.0,<6.0.0)",
"bs4 (>=0.0.2,<0.0.3)",
"lxml (>=6.0.0,<7.0.0)",
"colorlog (>=6.9.0,<7.0.0)",
"datasets (>=4.0.0,<5.0.0)",
"ipykernel (>=6.29.5,<7.0.0)",
"pypdf (>=5.8.0,<6.0.0)",
"fastapi (==0.115.11)",
"httpx[socks] (>=0.28.1,<0.29.0)",
"lxml-stubs (>=0.5.1,<0.6.0)",
"mypy (>=1.17.0,<2.0.0)",
"simsimd (>=6.5.0,<7.0.0)",
"types-pyyaml (>=6.0.12.20250516,<7.0.0.0)",
"uvicorn (==0.34.0)",
"qdrant-client (>=1.14.3,<1.16.0)",
"langchain-qdrant (>=0.2.0,<0.3.0)",
"flagembedding (>=1.3.5,<2.0.0)",
"jq (>=1.10.0,<2.0.0)",
"huggingface-hub (>=0.34.3,<0.35.0)",
"pandas (>=2.3.1,<3.0.0)",
"langgraph (>=0.6.4,<0.7.0)",
"langchain-openai (>=0.3.30,<0.4.0)",
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
deptry = "^0.23.1"
ruff = "^0.12.7"
[tool.poetry]
packages = [
{ include = "**/*.py" },
]