refactor: upgrade to copier v1

This commit is contained in:
2025-05-24 11:43:46 +02:00
parent 51da920272
commit bb9f57a482
16 changed files with 138 additions and 59 deletions

View File

@ -5,7 +5,7 @@ build-backend = "hatchling.build"
[project]
name = "phoenix_bec"
version = "0.0.0"
description = "Custom device implementations based on the ophyd hardware abstraction layer"
description = "The Phoenix plugin repository for BEC"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
@ -17,6 +17,7 @@ dependencies = []
[project.optional-dependencies]
dev = [
"black",
"copier",
"isort",
"coverage",
"pylint",
@ -38,12 +39,15 @@ plugin_file_writer = "phoenix_bec.file_writer"
[project.entry-points."bec.scans"]
plugin_scans = "phoenix_bec.scans"
[project.entry-points."bec.scans.metadata_schema"]
plugin_metadata_schema = "phoenix_bec.scans.metadata_schema"
[project.entry-points."bec.ipython_client_startup"]
plugin_ipython_client_pre = "phoenix_bec.bec_ipython_client.startup.pre_startup"
plugin_ipython_client_post = "phoenix_bec.bec_ipython_client.startup"
[project.entry-points."bec.widgets.auto_updates"]
plugin_widgets_update = "phoenix_bec.bec_widgets.auto_updates:PlotUpdate"
plugin_widgets_update = "phoenix_bec.bec_widgets.auto_updates"
[project.entry-points."bec.widgets.user_widgets"]
plugin_widgets = "phoenix_bec.bec_widgets.widgets"