build: fixed plugin import

This commit is contained in:
2024-04-22 18:44:22 +02:00
parent 140ceb7359
commit 0a59439ecc
2 changed files with 24 additions and 4 deletions
+4
View File
@@ -0,0 +1,4 @@
from .flomni_fermat_scan import FlomniFermatScan
from .LamNIFermatScan import LamNIFermatScan, LamNIMoveToScanCenter
from .owis_grid import OwisGrid
from .sgalil_grid import SgalilGrid
+20 -4
View File
@@ -12,10 +12,26 @@ classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
dependencies = ["bec_ipython_client", "bec_lib", "bec_server", "ophyd_devices", "std_daq_client", "rich", "pyepics"]
dependencies = [
"bec_ipython_client",
"bec_lib",
"bec_server",
"ophyd_devices",
"std_daq_client",
"rich",
"pyepics",
]
[project.optional-dependencies]
dev = ["black", "isort", "coverage", "pylint", "pytest", "pytest-random-order", "pytest-redis"]
dev = [
"black",
"isort",
"coverage",
"pylint",
"pytest",
"pytest-random-order",
"pytest-redis",
]
[project.entry-points."bec"]
plugin_bec = "csaxs_bec"
@@ -24,8 +40,8 @@ plugin_bec = "csaxs_bec"
plugin_scans = "csaxs_bec.scans"
[project.entry-points."bec.ipython_client"]
plugin_ipython_client_pre = "simulations_bec.bec_ipython_client.startup.pre_startup"
plugin_ipython_client_post = "simulations_bec.bec_ipython_client.startup"
plugin_ipython_client_pre = "csaxs_bec.bec_ipython_client.startup.pre_startup"
plugin_ipython_client_post = "csaxs_bec.bec_ipython_client.startup"
[project.entry-points."bec.widgets"]
plugin_widgets = "csaxs_bec.bec_widgets"