Added setup.py and made all imports relative so it will work as a module.

This commit is contained in:
The Wobbler 2024-12-29 19:23:53 +01:00
parent 239e50bfc9
commit 5cbc272ee3
5 changed files with 39 additions and 12 deletions

View file

@ -3,12 +3,12 @@
import sys
from PyQt6.QtWidgets import QApplication
from wobbl_tools.data_file import load_dataclass_json
from settings import Settings
from utils import Utils
from player.player import Player
from library.library import Library
from gui import GUI
from gui_communication.gui_communication import GUICommunication
from .settings import Settings
from .utils import Utils
from .player.player import Player
from .library.library import Library
from .gui import GUI
from .gui_communication.gui_communication import GUICommunication
class Wobuzz: