-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (54 loc) · 2.08 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (54 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[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
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_cellkraft'
[project]
name = "pymodaq_plugins_cellkraft"
description = 'Plugin for cellkraft instruments'
dependencies = [
"pymodaq",
"pymodbus"
]
authors = [
{name = "Loic GUILMARD", email = "loic.guilmard@cnrs.fr"},
{name = "Sébastien GUERRERO", email = "sebastien.guerrero@insa-lyon.fr"},
{name = "Fabien VILLEDIEU", email = "fabien.villedieu.pro@gmail.com"},
]
maintainers = [
{name = "Loic GUILMARD", email = "loic.guilmard@cnrs.fr"},
{name = "Sébastien GUERRERO", email = "sebastien.guerrero@insa-lyon.fr"},
]
# nottodo: leave everything below as is!
dynamic = ["version", "urls", "entry-points"]
readme = "README.rst"
license = { file="LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: User Interfaces",
]
[build-system]
requires = [
"hatchling>=1.9.0",
"hatch-vcs", "toml",
"pymodaq_utils>=0.0.6",
]
build-backend = "hatchling.build"
[tool.hatch.metadata.hooks.custom]
[tool.hatch.version]
source = "vcs"