Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,7 @@ models/*

# Sphinx documentation
docs/*/_build/

# environment
.venv
.env
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ authors = [
]
description = "A Comprehensive Toolkit for High-Quality PDF Content Extraction."
readme = "README.md"
license = { file="LICENSE" }
license = { file="LICENSE.md" }
requires-python = ">=3.10"
dependencies = [
"PyPDF2",
"matplotlib",
"pyyaml",
"frontend",
"pymupdf",
opencv-python = "^4.6.0"
"opencv-python>=4.6.0"
# Add other common dependencies
]

Expand All @@ -32,3 +32,5 @@ formula_detection = [
# Add other dependencies for formula detection
]
# Add additional dependencies for other models
[tool.setuptools.packages.find]
include = ["pdf_extract_kit"]
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ omegaconf
matplotlib
PyMuPDF
ultralytics>=8.2.85
doclayout-yolo==0.0.2
doclayout-yolo==0.0.4
unimernet==0.2.1
paddlepaddle-gpu
paddleocr==2.7.3
Expand Down