-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
49 lines (45 loc) · 1.2 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
[build-system]
# Defined by PEP 518:
requires = [
# for version management
"setuptools>=64", "setuptools_scm[toml]>=8"
]
build-backend = "setuptools.build_meta"
[project]
name = "dckit"
authors = [
# In alphabetical order.
{name = "Paul Müller"},
]
maintainers = [
{name = "Paul Müller", email="dev@craban.de"},
]
description = "Graphical toolkit for RT-DC data management"
readme = "README.rst"
requires-python = ">=3.10, <4"
keywords = ["RT-DC", "DC", "deformability", "cytometry"]
classifiers = [
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Intended Audience :: Science/Research',
]
license = "GPL-3.0-or-later"
dependencies = [
"dclab[tdms]>=0.67.0",
"h5py>=3.9.0",
"imageio[ffmpeg]",
"nptdms>=0.27.0",
"numpy>=1.21",
"pyqt5",
]
dynamic = ["version"]
[project.scripts]
dckit = "dckit.__main__:main"
[project.urls]
source = "https://github.com/DC-analysis/DCscope"
tracker = "https://github.com/DC-analysis/DCscope/issues"
documentation = "https://dckit.readthedocs.io"
changelog = "https://github.com/DC-analysis/DCscope/blob/main/CHANGELOG"
[tool.setuptools_scm]
write_to = "dckit/_version.py"
version_scheme = "post-release"