Linked the latest wobbl tools commit to the setup.py and requirements.txt and added the icon as package data.

This commit is contained in:
The Wobbler 2025-01-31 22:57:35 +01:00
parent 060132be36
commit 453e1b75b8
2 changed files with 4 additions and 3 deletions

View file

@ -2,3 +2,4 @@ PyQt6
pygame pygame
tinytag tinytag
pydub pydub
wobbl_tools @ git+https://teapot.informationsanarchistik.de/Wobbl/wobbl_tools@9b7e796877781f77f6df93475750c15a0ca51dd9#egg=wobbl_tools

View file

@ -27,13 +27,13 @@ setuptools.setup(
author="The Wobbler", author="The Wobbler",
author_email="emil@i21k.de", author_email="emil@i21k.de",
packages=setuptools.find_packages(include=["wobuzz", "wobuzz.*"]), packages=setuptools.find_packages(include=["wobuzz", "wobuzz.*"]),
package_data={"": ["*.txt"]}, package_data={"": ["*.txt", "*.svg"]},
install_requires=[ install_requires=[
"PyQt6", "PyQt6",
"tinytag", "tinytag",
"pydub", "pydub",
"pygame", "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={ entry_points={
"console_scripts": ["wobuzz=wobuzz.command_line:main"], "console_scripts": ["wobuzz=wobuzz.command_line:main"],