mirror of
https://github.com/nqrduck/nqrduck-broadband.git
synced 2024-12-22 23:57:50 +00:00
Changed MVC loading structure.
This commit is contained in:
parent
be824ecc9f
commit
29c1864513
3 changed files with 4 additions and 9 deletions
|
@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|||
|
||||
[project]
|
||||
name = "nqrduck-broadband"
|
||||
version = "0.0.3"
|
||||
version = "0.0.5"
|
||||
authors = [
|
||||
{ name="Julia Pfitzer", email="git@jupfi.me" },
|
||||
]
|
||||
|
|
3
src/nqrduck_broadband/module.py
Normal file
3
src/nqrduck_broadband/module.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from .broadband import Broadband as Model
|
||||
from .broadband_controller import BroadbandController as Controller
|
||||
from .broadband_view import BroadbandView as View
|
|
@ -3,14 +3,6 @@ name = nqrduck-broadband
|
|||
category = Measurement
|
||||
tooltip = Application used for broadband measurements
|
||||
|
||||
[MVC]
|
||||
model_file = broadband.py
|
||||
model_class = Broadband
|
||||
view_file = broadband_view.py
|
||||
view_class = BroadbandView
|
||||
controller_file = broadband_controller.py
|
||||
controller_class = BroadbandController
|
||||
|
||||
[FILES]
|
||||
config = resources/broadband.ini
|
||||
widget_file = broadband_widget
|
||||
|
|
Loading…
Reference in a new issue