38 lines
734 B
TOML
38 lines
734 B
TOML
[project]
|
|
name = "data preparation"
|
|
version = "0.1.0"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"azure-identity == 1.15.0",
|
|
"openai == 1.55.3",
|
|
"azure-search-documents == 11.4.0b6",
|
|
"azure-storage-blob == 12.17.0",
|
|
"python-dotenv == 1.0.0",
|
|
"httpx",
|
|
"azure-ai-documentintelligence",
|
|
"azure-ai-formrecognizer == 3.3.0",
|
|
"markdown",
|
|
"tqdm",
|
|
"PyMuPDF",
|
|
"tiktoken",
|
|
"langchain",
|
|
"bs4",
|
|
"urllib3",
|
|
"six",
|
|
"pdf2image",
|
|
"opencv-python",
|
|
"Pillow",
|
|
"chardet",
|
|
"SQLAlchemy == 2.0.41",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
test = ["pytest", "pytest-asyncio"]
|
|
dev = []
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
asyncio_mode = "auto"
|