-
Notifications
You must be signed in to change notification settings - Fork 184
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
68 lines (61 loc) · 1.52 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
66
67
68
[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 = [
"agent-framework==1.0.0b260127",
"azure-ai-inference==1.0.0b9",
"azure-appconfiguration==1.8.0",
"azure-identity==1.26.0b1",
"azure-monitor-opentelemetry==1.8.7",
"azure-storage-blob==12.29.0b1",
"azure-storage-queue==12.16.0b1",
"certifi==2026.1.4",
"charset-normalizer==3.4.4",
"opentelemetry-api==1.40.0",
"pandas==3.0.0",
"pdf2image==1.17.0",
"poppler-utils==0.1.0",
"pydantic==2.12.5",
"pydantic-settings==2.12.0",
"pymongo==4.16.0",
"python-dotenv==1.2.1",
"tiktoken==0.12.0",
"protobuf==6.33.6",
"pyjwt==2.12.1",
"pyasn1==0.6.3",
]
[dependency-groups]
dev = [
"coverage==7.13.2",
"pydantic==2.12.5",
"pytest==9.0.2",
"pytest-asyncio==1.3.0",
"pytest-cov==7.0.0",
"pytest-mock==3.15.1",
"mongomock==4.3.0",
"ruff==0.14.14",
]
[tool.pytest.ini_options]
minversion = "8.3.4"
addopts = "-v --strict-markers --maxfail=5"
testpaths = ["tests"]
pythonpath = ["src"]
python_files = ["test_*.py"]
[tool.coverage.run]
source = ["src"]
omit = ["src/__init__.py"]
[tool.coverage.report]
show_missing = true
skip_empty = true
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.",
"if TYPE_CHECKING:",
]
[tool.coverage.html]
directory = "htmlcov"
[tool.poetry.scripts]
start-app = "src.main:main"