-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (28 loc) · 879 Bytes
/
pyproject.toml
File metadata and controls
30 lines (28 loc) · 879 Bytes
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
[project]
name = "document-parser"
version = "0.0.1"
description = "Document Parser to extract the tables from PDF documents desinged for - Report Generator Agentic AI"
authors = [
{ name = "Wai Lin Kyaw", email = "wailink13@gmail.com" }
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi (>=0.115.11,<0.116.0)",
"uvicorn[standard] (>=0.34.0,<0.35.0)",
"transformers (>=4.49.0,<5.0.0)",
"torch (>=2.6.0,<3.0.0)",
"pillow (>=11.1.0,<12.0.0)",
"timm (>=1.0.15,<2.0.0)",
"python-multipart (>=0.0.20,<0.0.21)",
"pydantic (>=2.10.6,<3.0.0)",
"pydantic-settings (>=2.8.1,<3.0.0)",
"ultralytics (>=8.2.34,<8.3.0)",
"hypothesis (>=6.130.3,<7.0.0)",
"pytest (>=8.3.5,<9.0.0)"
]
[tool.poetry]
package-mode=false
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"