-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed plugin_info, adapted pyproject.tom
- Loading branch information
Showing
2 changed files
with
32 additions
and
27 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
|
@@ -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] | ||
|