-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
54 lines (50 loc) · 1.46 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
54
[build-system]
# Defined by PEP 518:
requires = [
# for version management
"setuptools>=64", "setuptools_scm[toml]>=8"
]
build-backend = "setuptools.build_meta"
[project]
name = "shapeout2"
authors = [
# In alphabetical order.
{name = "Benedikt Hartmann"},
{name = "Eoghan O'Connell"},
{name = "Maximilian Schlögel"},
{name = "Paul Müller"},
]
maintainers = [
{name = "Paul Müller", email="[email protected]"},
]
description = "User interface for deformability cytometry (DC)"
readme = "README.rst"
requires-python = ">=3.9, <4"
keywords = ["RT-DC", "DC", "deformability", "cytometry"]
classifiers = [
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Intended Audience :: Science/Research',
]
license = {text = "GPL v3"}
dependencies = [
"fcswrite>=0.5.1",
"dclab[dcor,http,s3]>=0.62.5",
"h5py>=2.8.0",
"numpy>=1.21", # CVE-2021-33430
"pyqt6",
"pyqtgraph==0.13.3",
"requests>=2.31.0", # CVE-2023-32681
"scipy>=1.10.0", # CVE-2023-25399
]
dynamic = ["version"]
[project.scripts]
shapeout2 = "shapeout2.__main__:main"
[project.urls]
source = "https://github.com/ZELLMECHANIK-DRESDEN/ShapeOut2"
tracker = "https://github.com/ZELLMECHANIK-DRESDEN/ShapeOut2/issues"
documentation = "https://shapeout2.readthedocs.io"
changelog = "https://github.com/ZELLMECHANIK-DRESDEN/ShapeOut2/blob/master/CHANGELOG"
[tool.setuptools_scm]
write_to = "shapeout2/_version.py"
version_scheme = "post-release"