Changed folder structure and project name.
This commit is contained in:
parent
5cc60924f0
commit
0a0eefbacd
8 changed files with 7 additions and 7 deletions
|
@ -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" },
|
||||
|
|
|
@ -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):
|
|
@ -1,4 +1,4 @@
|
|||
from core.module.module_controller import ModuleController
|
||||
from nqrduck.module.module_controller import ModuleController
|
||||
|
||||
|
||||
class BroadbandController(ModuleController):
|
|
@ -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__)
|
||||
|
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue