Implement Tesseract-based OCR to automatically extract vendor name, date, total amount, and VAT from uploaded receipt images/PDFs, reducing manual data entry and improving accuracy. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
41 lines
599 B
Plaintext
41 lines
599 B
Plaintext
# FastAPI
|
|
fastapi>=0.109.0
|
|
uvicorn[standard]>=0.27.0
|
|
|
|
# Database - SQLModel + Alembic
|
|
sqlmodel>=0.0.14
|
|
sqlalchemy[asyncio]>=2.0.25
|
|
aiosqlite>=0.19.0
|
|
alembic>=1.13.1
|
|
|
|
# Pydantic
|
|
pydantic>=2.5.3
|
|
pydantic-settings>=2.1.0
|
|
|
|
# File handling
|
|
python-multipart>=0.0.6
|
|
aiofiles>=23.2.1
|
|
Pillow>=10.2.0
|
|
|
|
# Authentication (shared)
|
|
PyJWT>=2.8.0
|
|
|
|
# Oracle (for nomenclatures)
|
|
oracledb>=2.0.1
|
|
|
|
# Utils
|
|
python-dotenv>=1.0.0
|
|
httpx>=0.26.0
|
|
|
|
# Testing
|
|
pytest>=8.0.0
|
|
pytest-asyncio>=0.23.3
|
|
|
|
# OCR Dependencies
|
|
paddleocr>=2.7.0
|
|
paddlepaddle>=2.5.0
|
|
opencv-python>=4.8.0
|
|
pytesseract>=0.3.10
|
|
pdf2image>=1.16.0
|
|
numpy>=1.24.0
|