-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
52 lines (47 loc) · 1.36 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=46", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "mpl_data_cast"
authors = [
# In alphabetical order.
{name = "Benedikt Hartmann"},
{name = "Paul Müller"},
]
maintainers = [
{name = "Paul Müller", email="dev@craban.de"},
]
description = "convert and transfer data to network shares"
readme = "README.rst"
requires-python = ">=3.10, <4"
keywords = ["Data maintenance", "MPL", "Max Planck"]
classifiers = [
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Intended Audience :: Science/Research',
]
license = {text = "GPL v3"}
dependencies = [
"click>=8",
"dclab>=0.62.1",
"h5py>=3.8.0",
"hdf5plugin", # compression
"numpy>=1.21", # CVE-2021-33430
"psutil",
"pyqt6",
"tifffile==2022.3.16",
]
dynamic = ["version"]
[project.scripts]
mpldc-gui = "mpl_data_cast.gui.__main__:main"
mpldc = "mpl_data_cast.cli.cli:cli"
[project.urls]
source = "https://github.com/GuckLab/MPL-Data-Cast"
tracker = "https://github.com/GuckLab/MPL-Data-Cast/issues"
documentation = "https://mpl-data-cast.readthedocs.io"
changelog = "https://github.com/GuckLab/MPL-Data-Cast/blob/main/CHANGELOG"
[tool.setuptools]
packages = ["mpl_data_cast"]
[tool.setuptools_scm]
write_to = "mpl_data_cast/_version.py"
version_scheme = "post-release"