31 lines
722 B
TOML
31 lines
722 B
TOML
[build-system]
|
|
requires = ["setuptools>=68.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "chunking-strategies-evaluation"
|
|
version = "0.1.0"
|
|
description = "Benchmarking application comparing chunking strategies on regulatory documents"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi>=0.109.0",
|
|
"uvicorn[standard]>=0.25.0",
|
|
"pydantic>=2.5.0",
|
|
"pydantic-settings>=2.1.0",
|
|
"python-docx>=1.0.0",
|
|
"openai>=1.6.0",
|
|
"qdrant-client>=1.7.0",
|
|
"tiktoken>=0.5.0",
|
|
"jinja2>=3.1.0",
|
|
"python-multipart>=0.0.6",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.4.0",
|
|
"pytest-asyncio>=0.23.0",
|
|
"httpx>=0.25.0",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"] |