Add initial project structure with OCR functionality and dependencies
- Create .gitignore to exclude Python-generated files and virtual environments - Add .python-version for Python version management - Implement main OCR script (main.py) to process PDF files and extract text - Add PDF processing functions in pdf_ocr.py - Update README.md with project description, requirements, and usage instructions - Include pyproject.toml for project metadata and dependencies - Add uv.lock for dependency resolution
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
[project]
|
||||
name = "pdf-reader"
|
||||
version = "0.1.0"
|
||||
description = "Add your description here"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.14.3"
|
||||
dependencies = [
|
||||
"pillow>=11.3.0",
|
||||
"pymupdf>=1.26.4",
|
||||
"pytesseract>=0.3.13",
|
||||
]
|
||||
Reference in New Issue
Block a user