restructure project

This commit is contained in:
Yaojia Wang
2026-01-27 23:58:17 +01:00
parent 58bf75db68
commit d6550375b0
230 changed files with 5513 additions and 1756 deletions

19
packages/shared/setup.py Normal file
View File

@@ -0,0 +1,19 @@
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",
],
)