-
Notifications
You must be signed in to change notification settings - Fork 189
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 1.01 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
[project]
name = "contentprocessor"
version = "0.1.0"
description = "Content Process Gold Standard Solution Accelerator - Content Processing Service"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"azure-appconfiguration>=1.7.1",
"azure-identity>=1.19.0",
"azure-storage-blob>=12.24.1",
"azure-storage-queue>=12.12.0",
"certifi>=2024.12.14",
"charset-normalizer>=3.4.1",
"openai==1.65.5",
"pandas>=2.2.3",
"pdf2image>=1.17.0",
"poppler-utils>=0.1.0",
"pydantic>=2.10.5",
"pydantic-settings>=2.7.1",
"pymongo>=4.11.2",
"python-dotenv>=1.0.1",
"tiktoken>=0.9.0",
]
[dependency-groups]
dev = [
"coverage>=7.6.10",
"pydantic>=2.10.5",
"pytest>=8.3.4",
"pytest-asyncio>=0.25.3",
"pytest-cov>=6.0.0",
"pytest-mock>=3.14.0",
"mongomock>=2.3.1",
"ruff>=0.9.1",
]
[tool.pytest.ini_options]
minversion = "8.3.4"
addopts = "--maxfail=1"
testpaths = ["tests"]
pythonpath = ["src"]
[tool.poetry.scripts]
start-app = "src.main:main"