From a316631a40297f3dea2421ed2aac3284d81a280d Mon Sep 17 00:00:00 2001 From: Elias Date: Thu, 22 Feb 2024 17:39:22 +0100 Subject: [PATCH] reorg cont. --- requirements.txt | 4 ++-- setup.py | 22 ---------------------- 2 files changed, 2 insertions(+), 24 deletions(-) delete mode 100644 setup.py diff --git a/requirements.txt b/requirements.txt index 666568e..59b5086 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,8 @@ hatch>=1.9.3 hatchling>=1.21.1 +pdfminer.six==20231228 pydantic>=2.6.1 pydantic_core>=2.16.2 -PyMuPDF>=1.23.22 -PyMuPDFb>=1.23.22 +python-docx==1.1.0 PyYAML>=6.0.1 SQLAlchemy>=2.0.27 diff --git a/setup.py b/setup.py deleted file mode 100644 index dac328c..0000000 --- a/setup.py +++ /dev/null @@ -1,22 +0,0 @@ -# cx_Freeze build not successful - -import sys -from cx_Freeze import setup, Executable -from src.rosinenpicker.start import __version__ - -# Dependencies are automatically detected, but it might need fine tuning. -build_exe_options = { - "excludes": ["pdfs/", "configs/", "testconfigs/", ".github/", "helper/", "dumpster/", "*.bat", "test"], -} - -# base="Win32GUI" should be used only for Windows GUI app -base = "Win32GUI" if sys.platform == "win32" else None - -setup( - name="rosinenpicker", - version=__version__, - description="A package for picking the juciest text morsels out of a pile of documents.", - options={"build_exe": build_exe_options}, - executables=[Executable("src/rosinenpicker/start.py", base=base, target_name="rosinenpicker")], -) -