forked from open-edge-platform/edge-ai-libraries
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
50 lines (46 loc) · 1.27 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
[tool.poetry]
name = "dataprep-pgvector"
version = "0.1.0"
description = "A tool for loading, parsing, and generating embeddings for PDF, DOCX, and TXT files, storing these embeddings in PGVector (Vector Store)"
authors = []
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
av = "13.1.0"
beautifulsoup4 = "4.12.3"
boto3 = "1.40.19"
docarray = {extras = ["full"], version = "0.41.0"}
docx2txt = "0.8"
fastapi = "0.121.3"
gunicorn = "^23.0.0"
huggingface_hub = "0.33.0"
html2text = "2024.2.26"
h11 = "0.16.0"
transformers = "4.53.3"
langchain = "^0.3.9"
langchain-community = "^0.3.9"
langchain-text-splitters = ">=0.3.3,<0.4.0"
langchain_postgres = "^0.0.13"
langchain_openai = "^0.3.5"
markdown = "3.7"
psycopg = {extras = ["pool", "binary"], version = "3.2.3"}
pymupdf = "1.24.13"
python-docx = "1.2.0"
python-multipart = ">=0.0.18"
pydantic = "^2.9.2"
pydantic-settings = "^2.6.1"
shortuuid = "1.0.13"
structlog = "25.1.0"
pdfplumber = "0.11.8"
uvicorn = ">=0.21.0,<0.23.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-mock = "^3.14.0"
coverage = "^7.6.4"
pytest-asyncio = "^0.24.0"
httpx = "^0.27.2"
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "module"
[build-system]
requires = ["poetry-core>=1.8.3"]
build-backend = "poetry.core.masonry.api"