Files
invoice-master-poc-v2/packages/shared/setup.py
2026-01-27 23:58:17 +01:00

20 lines
446 B
Python

from setuptools import setup, find_packages
setup(
name="invoice-shared",
version="0.1.0",
packages=find_packages(),
python_requires=">=3.11",
install_requires=[
"PyMuPDF>=1.23.0",
"paddleocr>=2.7.0",
"Pillow>=10.0.0",
"numpy>=1.24.0",
"opencv-python>=4.8.0",
"psycopg2-binary>=2.9.0",
"python-dotenv>=1.0.0",
"pyyaml>=6.0",
"thefuzz>=0.20.0",
],
)