Added entry-points.

This commit is contained in:
jupfi 2023-07-03 20:26:08 +02:00
parent 1f3e46917e
commit 13c5359861
2 changed files with 4 additions and 2 deletions

View file

@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project] [project]
name = "nqrduck-broadband" name = "nqrduck-broadband"
version = "0.0.11" version = "0.0.12"
authors = [ authors = [
{ name="Julia Pfitzer", email="git@jupfi.me" }, { name="Julia Pfitzer", email="git@jupfi.me" },
] ]
@ -26,3 +26,5 @@ dependencies = [
"NQRduck", "NQRduck",
] ]
[project.entry-points."nqrduck"]
"nqrduck-broadband" = "nqrduck_broadband.broadband:Broadband"

View file

@ -5,4 +5,4 @@ from nqrduck_broadband.view import BroadbandView
from nqrduck_broadband.controller import BroadbandController from nqrduck_broadband.controller import BroadbandController
from nqrduck_broadband.widget import Ui_Form from nqrduck_broadband.widget import Ui_Form
Broadband = Module(BroadbandModel, BroadbandController, BroadbandView) Broadband = Module(BroadbandModel, BroadbandView, BroadbandController)