Files
M3DocRAG/m3docvqa/pyproject.toml
j-min 27aac8d521 Release commit
Signed-off-by: Stephen Augustus <saugustus2@bloomberg.net>
2025-02-15 09:52:51 -05:00

37 lines
803 B
TOML

[build-system]
requires = ["setuptools>=69.5"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "m3docvqa"
version = "0.0.1"
description = "M3DocVQA - Dataset package for M3DocRAG: Multi-modal Retrieval is What You Need for Multi-page Multi-document Understanding."
readme = "README.md"
requires-python = ">=3.10"
classifiers = ["Programming Language :: Python :: 3"]
dependencies = [
"loguru",
"jsonlines",
"fire",
"pytest-playwright",
"figure",
"pdf2image",
"pillow",
"numpy<2.0.0",
"pdfrw",
"tqdm",
"reportlab", # only used in the test cases
]
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]