dcscope 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- dcscope-0.1.0/PKG-INFO +20 -0
- dcscope-0.1.0/dcscope/__init__.py +1 -0
- dcscope-0.1.0/dcscope.egg-info/PKG-INFO +20 -0
- dcscope-0.1.0/dcscope.egg-info/SOURCES.txt +7 -0
- dcscope-0.1.0/dcscope.egg-info/dependency_links.txt +1 -0
- dcscope-0.1.0/dcscope.egg-info/requires.txt +8 -0
- dcscope-0.1.0/dcscope.egg-info/top_level.txt +1 -0
- dcscope-0.1.0/pyproject.toml +30 -0
- dcscope-0.1.0/setup.cfg +4 -0
dcscope-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: dcscope
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: User interface for deformability cytometry (DC)
|
|
5
|
+
Author: Paul Müller
|
|
6
|
+
Maintainer-email: Paul Müller <dev@craban.de>
|
|
7
|
+
License-Expression: GPL-3.0-or-later
|
|
8
|
+
Keywords: RT-DC,DC,deformability,cytometry
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Intended Audience :: Science/Research
|
|
12
|
+
Requires-Python: <4,>=3.9
|
|
13
|
+
Requires-Dist: dclab[dcor,export,http,s3]>=0.64.0
|
|
14
|
+
Requires-Dist: h5py>=2.8.0
|
|
15
|
+
Requires-Dist: numpy>=1.21
|
|
16
|
+
Requires-Dist: pygments
|
|
17
|
+
Requires-Dist: pyqt6
|
|
18
|
+
Requires-Dist: pyqtgraph==0.13.6
|
|
19
|
+
Requires-Dist: requests>=2.31.0
|
|
20
|
+
Requires-Dist: scipy>=1.10.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
raise NotImplementedError("This is just as stub")
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: dcscope
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: User interface for deformability cytometry (DC)
|
|
5
|
+
Author: Paul Müller
|
|
6
|
+
Maintainer-email: Paul Müller <dev@craban.de>
|
|
7
|
+
License-Expression: GPL-3.0-or-later
|
|
8
|
+
Keywords: RT-DC,DC,deformability,cytometry
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Intended Audience :: Science/Research
|
|
12
|
+
Requires-Python: <4,>=3.9
|
|
13
|
+
Requires-Dist: dclab[dcor,export,http,s3]>=0.64.0
|
|
14
|
+
Requires-Dist: h5py>=2.8.0
|
|
15
|
+
Requires-Dist: numpy>=1.21
|
|
16
|
+
Requires-Dist: pygments
|
|
17
|
+
Requires-Dist: pyqt6
|
|
18
|
+
Requires-Dist: pyqtgraph==0.13.6
|
|
19
|
+
Requires-Dist: requests>=2.31.0
|
|
20
|
+
Requires-Dist: scipy>=1.10.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
dcscope
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "dcscope"
|
|
3
|
+
authors = [
|
|
4
|
+
# In alphabetical order.
|
|
5
|
+
{name = "Paul Müller"},
|
|
6
|
+
]
|
|
7
|
+
maintainers = [
|
|
8
|
+
{name = "Paul Müller", email="dev@craban.de"},
|
|
9
|
+
]
|
|
10
|
+
description = "User interface for deformability cytometry (DC)"
|
|
11
|
+
requires-python = ">=3.9, <4"
|
|
12
|
+
keywords = ["RT-DC", "DC", "deformability", "cytometry"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
'Operating System :: OS Independent',
|
|
15
|
+
'Programming Language :: Python :: 3',
|
|
16
|
+
'Intended Audience :: Science/Research',
|
|
17
|
+
]
|
|
18
|
+
license = "GPL-3.0-or-later"
|
|
19
|
+
dependencies = [
|
|
20
|
+
"dclab[dcor,export,http,s3]>=0.64.0",
|
|
21
|
+
"h5py>=2.8.0",
|
|
22
|
+
"numpy>=1.21", # CVE-2021-33430
|
|
23
|
+
"pygments",
|
|
24
|
+
"pyqt6",
|
|
25
|
+
"pyqtgraph==0.13.6",
|
|
26
|
+
"requests>=2.31.0", # CVE-2023-32681
|
|
27
|
+
"scipy>=1.10.0", # CVE-2023-25399
|
|
28
|
+
]
|
|
29
|
+
|
|
30
|
+
version = "0.1.0"
|
dcscope-0.1.0/setup.cfg
ADDED