-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (58 loc) · 1.81 KB
/
pyproject.toml
File metadata and controls
66 lines (58 loc) · 1.81 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
64
65
66
[build-system]
requires = ["hatchling>=1.9.0", "hatch-vcs", "toml"]
build-backend = "hatchling.build"
[project]
name = "pymodaq_plugin_manager"
dynamic = [
"version",
]
description = "Manager and interface to list, install or remove PyMoDAQ's plugins"
readme = "README_base.md"
license = { file="LICENSE" }
requires-python = ">=3.9"
authors = [
{ name = "Sébastien Weber", email = "sebastien.weber@cemes.fr" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Other Environment",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: User Interfaces",
]
dependencies = [
'distlib',
'jsonschema',
'pytablewriter',
'requests',
'yawrap',
'lxml',
'readme_renderer',
'chardet',
'packaging',
'pymodaq_utils>=5.2.0'
]
[project.urls]
Homepage = "http://pymodaq.cnrs.fr"
Source = "https://github.com/PyMoDAQ/pymodaq_plugins_manager"
Tracker = "https://github.com/PyMoDAQ/pymodaq_plugins_manager/issues"
[tool.hatch.version]
source = "vcs"
fallback-version = '1.2.4'
[tool.hatch.build.targets.sdist]
include = [
"/src",
]
[project.scripts]
plugin_manager = 'pymodaq_plugin_manager.manager:main'
write_plugins_doc = 'pymodaq_plugin_manager.validate:write_plugin_doc'
plugin_checker = 'pymodaq_plugin_manager.compatibility_checker:main'