-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (63 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
65 lines (63 loc) · 1.42 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
53
54
55
56
57
58
59
60
61
62
63
64
65
[project]
name = "doc-converter"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"aiofiles>=24.1.0",
"beautifulsoup4>=4.13.4",
"celery>=5.5.3",
"chardet>=5.2.0",
"easyocr>=1.7.2",
"eventlet>=0.40.1",
"fastapi>=0.116.1",
"httpx>=0.28.1",
"lxml>=6.0.0",
"markdownify>=1.1.0",
"numpy>=2.3.1",
"openpyxl>=3.1.5",
"paddleocr>=3.1.0",
"paddlepaddle>=3.1.0",
"pillow>=11.3.0",
"pydantic>=2.11.7",
"pydantic-settings>=2.10.1",
"pypdf2>=3.0.1",
"python-docx>=1.2.0",
"python-jose[cryptography]>=3.5.0",
"python-magic>=0.4.27",
"python-multipart>=0.0.20",
"python-pptx>=1.0.2",
"redis>=6.2.0",
"setuptools>=80.9.0",
"striprtf>=0.0.29",
"tenacity>=9.1.2",
"torch>=2.7.1",
"torchaudio>=2.7.1",
"torchvision>=0.22.1",
"uvicorn[standard]>=0.35.0",
"xlrd>=2.0.2",
"xlwt>=1.3.0",
]
[project.optional-dependencies]
dev = [
"black>=25.1.0",
"flake8>=7.3.0",
"mypy>=1.16.1",
"pre-commit>=4.2.0",
"pytest>=8.4.1",
"pytest-asyncio>=1.0.0",
"pytest-cov>=6.2.1",
"types-aiofiles>=24.1.0.20250708",
]
[dependency-groups]
dev = [
"black>=25.1.0",
"flake8>=7.3.0",
"mypy>=1.16.1",
"pre-commit>=4.2.0",
"pytest>=8.4.1",
"pytest-asyncio>=1.0.0",
"pytest-cov>=6.2.1",
"types-aiofiles>=24.1.0.20250708",
]