Skip to content

Commit

Permalink
removed plugin_info, adapted pyproject.tom
Browse files Browse the repository at this point in the history
  • Loading branch information
seb5g committed Oct 26, 2024
1 parent fc0f698 commit 4c29f6c
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 27 deletions.
20 changes: 0 additions & 20 deletions plugin_info.toml

This file was deleted.

39 changes: 32 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,34 @@
[build-system]
requires = ["hatchling>=1.9.0", "hatch-vcs", "toml", "pymodaq_utils>=0.0.3"]
build-backend = "hatchling.build"
[features] # defines the plugin features contained into this plugin
instruments = true # true if plugin contains instrument classes (else false, notice the lowercase for toml files)
extensions = false # true if plugins contains dashboard extensions
pid_models = false # true if plugins contains pid models
h5exporters = false # true if plugin contains custom h5 file exporters
scanners = false # true if plugin contains custom scan layout (daq_scan extensions)

[urls]
package-url = 'https://github.com/PyMoDAQ/pymodaq_plugins_mock'

[project]
dynamic = ["version", "authors", "dependencies", "description", "urls", "entry-points"]
name = "pymodaq_plugins_mock"
description = 'Set of base PyMoDAQ plugins including Mock ones for development'
dependencies = [
"pymodaq>=5.0.0",
]

authors = [
{name = "Sébastien Weber", email = "[email protected]"},
]
maintainers = [
{name = "Sébastien Weber", email = "[email protected]"},
]

dynamic = ["version", "urls", "entry-points"]
readme = "README.rst"
license = { file="LICENSE" }
requires-python = ">=3.8"

name = "pymodaq_plugins_mock"

classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Other Environment",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
Expand All @@ -27,6 +43,15 @@ classifiers = [
"Topic :: Software Development :: User Interfaces",
]

[build-system]
requires = [
"hatchling>=1.9.0",
"hatch-vcs", "toml",
"pymodaq_utils>=0.0.5",
#"pymodaq_utils @ file:///C:/Users/weber/Labo/ProgrammesPython/PyMoDAQ_Git/pymodaq_utils"
]
build-backend = "hatchling.build"

[tool.hatch.metadata.hooks.custom]

[tool.hatch.version]
Expand Down

0 comments on commit 4c29f6c

Please sign in to comment.