CytoTable 0.0.9__tar.gz → 0.0.11__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: CytoTable
3
- Version: 0.0.9
3
+ Version: 0.0.11
4
4
  Summary: Transform CellProfiler and DeepProfiler data for processing image-based profiling readouts with Pycytominer and other Cytomining tools.
5
5
  Home-page: https://github.com/cytomining/CytoTable
6
6
  License: BSD-3-Clause License
@@ -3,7 +3,7 @@ __init__.py for cytotable
3
3
  """
4
4
 
5
5
  # note: version data is maintained by poetry-dynamic-versioning (do not edit)
6
- __version__ = "0.0.9"
6
+ __version__ = "0.0.11"
7
7
 
8
8
  from .convert import convert
9
9
  from .exceptions import (
@@ -68,13 +68,6 @@ SQLITE_AFFINITY_DATA_TYPE_SYNONYMS = {
68
68
  ],
69
69
  }
70
70
 
71
- # metadata column names and types for internal use within CytoTable
72
- CYOTABLE_META_COLUMN_TYPES = {
73
- "cytotable_meta_source_path": "VARCHAR",
74
- "cytotable_meta_offset": "BIGINT",
75
- "cytotable_meta_rownum": "BIGINT",
76
- }
77
-
78
71
  CYTOTABLE_DEFAULT_PARQUET_METADATA = {
79
72
  "data-producer": "https://github.com/cytomining/CytoTable",
80
73
  "data-producer-version": str(_get_cytotable_version()),