CytoTable 0.0.14__tar.gz → 0.0.16__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.
- {cytotable-0.0.14 → cytotable-0.0.16}/PKG-INFO +1 -1
- cytotable-0.0.16/cytotable/__init__.py +27 -0
- {cytotable-0.0.14 → cytotable-0.0.16}/cytotable/convert.py +3 -0
- {cytotable-0.0.14 → cytotable-0.0.16}/cytotable/utils.py +0 -6
- {cytotable-0.0.14 → cytotable-0.0.16}/pyproject.toml +16 -5
- cytotable-0.0.14/cytotable/__init__.py +0 -15
- {cytotable-0.0.14 → cytotable-0.0.16}/LICENSE +0 -0
- {cytotable-0.0.14 → cytotable-0.0.16}/cytotable/constants.py +0 -0
- {cytotable-0.0.14 → cytotable-0.0.16}/cytotable/exceptions.py +0 -0
- {cytotable-0.0.14 → cytotable-0.0.16}/cytotable/presets.py +0 -0
- {cytotable-0.0.14 → cytotable-0.0.16}/cytotable/sources.py +0 -0
- {cytotable-0.0.14 → cytotable-0.0.16}/readme.md +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: CytoTable
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.16
|
4
4
|
Summary: Transform CellProfiler and DeepProfiler data for processing image-based profiling readouts with Pycytominer and other Cytomining tools.
|
5
5
|
License: BSD-3-Clause License
|
6
6
|
Keywords: python,cellprofiler,single-cell-analysis,way-lab
|
@@ -0,0 +1,27 @@
|
|
1
|
+
"""
|
2
|
+
__init__.py for cytotable
|
3
|
+
"""
|
4
|
+
|
5
|
+
# note: version data is maintained by poetry-dynamic-versioning (do not edit)
|
6
|
+
__version__ = "0.0.16"
|
7
|
+
|
8
|
+
# filter warnings about pkg_resources deprecation
|
9
|
+
# note: these stem from cloudpathlib google cloud
|
10
|
+
# dependencies.
|
11
|
+
import warnings
|
12
|
+
|
13
|
+
warnings.filterwarnings(
|
14
|
+
"ignore",
|
15
|
+
message=(".*pkg_resources is deprecated as an API.*"),
|
16
|
+
category=UserWarning,
|
17
|
+
module="google_crc32c.__config__",
|
18
|
+
)
|
19
|
+
|
20
|
+
from .convert import convert
|
21
|
+
from .exceptions import (
|
22
|
+
CytoTableException,
|
23
|
+
DatatypeException,
|
24
|
+
NoInputDataException,
|
25
|
+
SchemaException,
|
26
|
+
)
|
27
|
+
from .presets import config
|
@@ -166,12 +166,6 @@ def _duckdb_reader() -> duckdb.DuckDBPyConnection:
|
|
166
166
|
https://duckdb.org/docs/sql/configuration#configuration-reference
|
167
167
|
*/
|
168
168
|
PRAGMA preserve_insertion_order=FALSE;
|
169
|
-
|
170
|
-
/*
|
171
|
-
Disable progress bar from displaying (defaults to TRUE)
|
172
|
-
See earlier documentation references above for more information.
|
173
|
-
*/
|
174
|
-
SET enable_progress_bar=FALSE;
|
175
169
|
""",
|
176
170
|
)
|
177
171
|
|
@@ -5,7 +5,7 @@ requires = [ "poetry-core>=1", "poetry-dynamic-versioning>=1,<2" ]
|
|
5
5
|
[tool.poetry]
|
6
6
|
name = "CytoTable"
|
7
7
|
# note: version data is maintained by poetry-dynamic-versioning (do not edit)
|
8
|
-
version = "0.0.
|
8
|
+
version = "0.0.16"
|
9
9
|
description = "Transform CellProfiler and DeepProfiler data for processing image-based profiling readouts with Pycytominer and other Cytomining tools."
|
10
10
|
authors = [ "Cytomining Community" ]
|
11
11
|
license = "BSD-3-Clause License"
|
@@ -33,13 +33,21 @@ scipy = [
|
|
33
33
|
[tool.poetry.group.dev.dependencies]
|
34
34
|
pytest = ">=7.4,<9.0"
|
35
35
|
pytest-cov = ">=4.1,<7.0"
|
36
|
-
Sphinx = ">=6,<8"
|
37
|
-
myst-parser = ">=2,<4"
|
38
|
-
sphinxcontrib-mermaid = ">=0.9,<1.1"
|
39
36
|
cytominer-database = "^0.3.4"
|
40
37
|
pycytominer = "^1.1.0"
|
41
38
|
dunamai = "^1.19.0"
|
42
|
-
botocore = "^1.34.133"
|
39
|
+
botocore = "^1.34.133" # added to help avoid dependency reolution issues
|
40
|
+
|
41
|
+
[tool.poetry.group.docs.dependencies]
|
42
|
+
jupyterlab = "^4.4.3"
|
43
|
+
jupyterlab-code-formatter = "^3.0.2"
|
44
|
+
black = "^25.1.0"
|
45
|
+
isort = "^6.0.1"
|
46
|
+
jupytext = "^1.17.1"
|
47
|
+
Sphinx = ">=6,<8"
|
48
|
+
myst-parser = ">=2,<4"
|
49
|
+
sphinxcontrib-mermaid = ">=0.9,<1.1"
|
50
|
+
myst-nb = "^1.2.0"
|
43
51
|
|
44
52
|
[tool.poetry.requires-plugins]
|
45
53
|
poetry-dynamic-versioning = { version = ">=1.0.0,<2.0.0", extras = [ "plugin" ] }
|
@@ -67,6 +75,9 @@ markers = [
|
|
67
75
|
"large_data_tests: tests which involve the use of large data.",
|
68
76
|
]
|
69
77
|
|
78
|
+
[tool.jupytext]
|
79
|
+
formats = "ipynb,py:light"
|
80
|
+
|
70
81
|
[tool.vulture]
|
71
82
|
min_confidence = 80
|
72
83
|
paths = [ "cytotable" ]
|
@@ -1,15 +0,0 @@
|
|
1
|
-
"""
|
2
|
-
__init__.py for cytotable
|
3
|
-
"""
|
4
|
-
|
5
|
-
# note: version data is maintained by poetry-dynamic-versioning (do not edit)
|
6
|
-
__version__ = "0.0.14"
|
7
|
-
|
8
|
-
from .convert import convert
|
9
|
-
from .exceptions import (
|
10
|
-
CytoTableException,
|
11
|
-
DatatypeException,
|
12
|
-
NoInputDataException,
|
13
|
-
SchemaException,
|
14
|
-
)
|
15
|
-
from .presets import config
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|