From 453e1b75b8e296fc1f7806434a0512e6c3d953f8 Mon Sep 17 00:00:00 2001 From: EKNr1 Date: Fri, 31 Jan 2025 22:57:35 +0100 Subject: [PATCH] Linked the latest wobbl tools commit to the setup.py and requirements.txt and added the icon as package data. --- requirements.txt | 3 ++- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index 0cad0aa..f4f580b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ PyQt6 pygame tinytag -pydub \ No newline at end of file +pydub +wobbl_tools @ git+https://teapot.informationsanarchistik.de/Wobbl/wobbl_tools@9b7e796877781f77f6df93475750c15a0ca51dd9#egg=wobbl_tools \ No newline at end of file diff --git a/setup.py b/setup.py index dc84ddb..fee12a6 100644 --- a/setup.py +++ b/setup.py @@ -27,13 +27,13 @@ setuptools.setup( author="The Wobbler", author_email="emil@i21k.de", packages=setuptools.find_packages(include=["wobuzz", "wobuzz.*"]), - package_data={"": ["*.txt"]}, + package_data={"": ["*.txt", "*.svg"]}, install_requires=[ "PyQt6", "tinytag", "pydub", "pygame", - "wobbl_tools @ git+https://teapot.informationsanarchistik.de/Wobbl/wobbl_tools@main#egg=wobbl_tools" + "wobbl_tools @ git+https://teapot.informationsanarchistik.de/Wobbl/wobbl_tools@9b7e796877781f77f6df93475750c15a0ca51dd9#egg=wobbl_tools" ], entry_points={ "console_scripts": ["wobuzz=wobuzz.command_line:main"],