-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.39 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
53
[build-system]
# Defined by PEP 518:
requires = [
# for version management
"setuptools>=45", "setuptools_scm[toml]>=6.2"
]
build-backend = "setuptools.build_meta"
[project]
name = "chipstream"
authors = [
# In alphabetical order.
{name = "Paul Müller"},
]
maintainers = [
{name = "Paul Müller", email="[email protected]"},
]
description = "GUI and CLI for DC data postprocessing"
readme = "README.rst"
requires-python = ">=3.10, <4"
keywords = ["RT-DC", "deformability", "cytometry"]
classifiers = [
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Visualization',
'Intended Audience :: Science/Research',
]
license = {text = "GPL version 3.0 or later"}
dependencies = [
"dcnum>=0.25.5",
"h5py>=3.0.0, <4",
"numpy>=1.21, <3", # CVE-2021-33430
]
dynamic = ["version"]
[project.optional-dependencies]
cli = ["click>=8"]
gui = ["pyqt6"]
torch = ["torch>=2.2"]
[project.scripts]
chipstream-cli = "chipstream.cli:main"
chipstream-gui = "chipstream.gui:main"
[project.urls]
source = "https://github.com/DC-Analysis/ChipStream"
tracker = "https://github.com/DC-Analysis/ChipStream/issues"
documentation = "https://chipstream.readthedocs.io/en/stable/"
changelog = "https://chipstream.readthedocs.io/en/stable/sec_changelog.html"
[tool.setuptools_scm]
write_to = "chipstream/_version.py"
version_scheme = "post-release"