Changed folder structure and project name.

This commit is contained in:
jupfi 2023-06-28 14:02:41 +02:00
commit 0a0eefbacd
8 changed files with 7 additions and 7 deletions

View file

@ -3,7 +3,7 @@ requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "Broadband"
name = "nqrduck-broadband"
version = "0.0.2"
authors = [
{ name="Julia Pfitzer", email="git@jupfi.me" },

View file

@ -1,5 +1,5 @@
from PyQt5.QtCore import pyqtSignal, QObject
from core.module.module_model import ModuleModel
from nqrduck.module.module_model import ModuleModel
class Broadband(ModuleModel):

View file

@ -1,4 +1,4 @@
from core.module.module_controller import ModuleController
from nqrduck.module.module_controller import ModuleController
class BroadbandController(ModuleController):

View file

@ -1,7 +1,7 @@
import logging
from PyQt5.QtWidgets import QWidget
from core.module.module_view import ModuleView
from modules.broadband.broadband_widget import Ui_Form
from nqrduck.module.module_view import ModuleView
from .broadband_widget import Ui_Form
logger = logging.getLogger(__name__)

View file

@ -1,5 +1,5 @@
[META]
name = Broadband
name = nqrduck-broadband
category = Measurement
tooltip = Application used for broadband measurements
@ -17,4 +17,4 @@ widget_file = broadband_widget
toolbox_logo = resources/toolbox_logo.png
[DEPENDECIES]
spectrometer
Spectrometer