-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 937 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 937 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
31
32
33
34
35
36
37
38
[project]
name = "multimodal-doc-intake-kit"
version = "0.1.0"
description = "Schema-first document ingestion service with deterministic normalization and review flow."
readme = "README.md"
requires-python = ">=3.9,<4.0"
license = { file = "LICENSE" }
authors = [{ name = "Inferensys Engineering" }]
dependencies = [
"azure-ai-documentintelligence>=1.0.2,<2.0.0",
"azure-core>=1.35.0,<2.0.0",
"fastapi>=0.115.0,<1.0.0",
"httpx>=0.27.0,<1.0.0",
"openai>=1.75.0,<2.0.0",
"uvicorn>=0.30.0,<1.0.0",
"pydantic>=2.8.0,<3.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0,<9.0.0",
]
demo = [
"pillow>=11.2.0,<12.0.0",
"python-docx>=1.1.2,<2.0.0",
"reportlab>=4.4.0,<5.0.0",
]
[build-system]
requires = ["hatchling>=1.25.0"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/multimodal_doc_intake_kit"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]