cellfinder 0.7.1__tar.gz → 0.8.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.

Potentially problematic release.


This version of cellfinder might be problematic. Click here for more details.

Files changed (33) hide show
  1. {cellfinder-0.7.1/cellfinder.egg-info → cellfinder-0.8.0}/PKG-INFO +27 -3
  2. {cellfinder-0.7.1 → cellfinder-0.8.0}/cellfinder/main.py +1 -1
  3. {cellfinder-0.7.1 → cellfinder-0.8.0}/cellfinder/tools/parser.py +2 -2
  4. {cellfinder-0.7.1 → cellfinder-0.8.0}/cellfinder/tools/prep.py +1 -1
  5. {cellfinder-0.7.1 → cellfinder-0.8.0}/cellfinder/tools/tools.py +2 -2
  6. {cellfinder-0.7.1 → cellfinder-0.8.0/cellfinder.egg-info}/PKG-INFO +27 -3
  7. {cellfinder-0.7.1 → cellfinder-0.8.0}/cellfinder.egg-info/requires.txt +1 -1
  8. {cellfinder-0.7.1 → cellfinder-0.8.0}/pyproject.toml +2 -2
  9. {cellfinder-0.7.1 → cellfinder-0.8.0}/.gitignore +0 -0
  10. {cellfinder-0.7.1 → cellfinder-0.8.0}/LICENSE +0 -0
  11. {cellfinder-0.7.1 → cellfinder-0.8.0}/MANIFEST.in +0 -0
  12. {cellfinder-0.7.1 → cellfinder-0.8.0}/README.md +0 -0
  13. {cellfinder-0.7.1 → cellfinder-0.8.0}/cellfinder/__init__.py +0 -0
  14. {cellfinder-0.7.1 → cellfinder-0.8.0}/cellfinder/analyse/__init__.py +0 -0
  15. {cellfinder-0.7.1 → cellfinder-0.8.0}/cellfinder/analyse/analyse.py +0 -0
  16. {cellfinder-0.7.1 → cellfinder-0.8.0}/cellfinder/export/__init__.py +0 -0
  17. {cellfinder-0.7.1 → cellfinder-0.8.0}/cellfinder/export/abc4d.py +0 -0
  18. {cellfinder-0.7.1 → cellfinder-0.8.0}/cellfinder/export/brainrender.py +0 -0
  19. {cellfinder-0.7.1 → cellfinder-0.8.0}/cellfinder/export/export.py +0 -0
  20. {cellfinder-0.7.1 → cellfinder-0.8.0}/cellfinder/extract/__init__.py +0 -0
  21. {cellfinder-0.7.1 → cellfinder-0.8.0}/cellfinder/extract/extract_cubes.py +0 -0
  22. {cellfinder-0.7.1 → cellfinder-0.8.0}/cellfinder/figures/__init__.py +0 -0
  23. {cellfinder-0.7.1 → cellfinder-0.8.0}/cellfinder/figures/figures.py +0 -0
  24. {cellfinder-0.7.1 → cellfinder-0.8.0}/cellfinder/figures/heatmap.py +0 -0
  25. {cellfinder-0.7.1 → cellfinder-0.8.0}/cellfinder/tools/__init__.py +0 -0
  26. {cellfinder-0.7.1 → cellfinder-0.8.0}/cellfinder/tools/image_processing.py +0 -0
  27. {cellfinder-0.7.1 → cellfinder-0.8.0}/cellfinder/tools/system.py +0 -0
  28. {cellfinder-0.7.1 → cellfinder-0.8.0}/cellfinder.egg-info/SOURCES.txt +0 -0
  29. {cellfinder-0.7.1 → cellfinder-0.8.0}/cellfinder.egg-info/dependency_links.txt +0 -0
  30. {cellfinder-0.7.1 → cellfinder-0.8.0}/cellfinder.egg-info/entry_points.txt +0 -0
  31. {cellfinder-0.7.1 → cellfinder-0.8.0}/cellfinder.egg-info/not-zip-safe +0 -0
  32. {cellfinder-0.7.1 → cellfinder-0.8.0}/cellfinder.egg-info/top_level.txt +0 -0
  33. {cellfinder-0.7.1 → cellfinder-0.8.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cellfinder
3
- Version: 0.7.1
3
+ Version: 0.8.0
4
4
  Summary: Automated 3D cell detection and registration of whole-brain images
5
5
  Author: Christian Niedworok, Charly Rousseau
6
6
  Author-email: Adam Tyson <code@adamltyson.com>
@@ -48,11 +48,35 @@ Classifier: Programming Language :: Python :: 3.10
48
48
  Classifier: Topic :: Scientific/Engineering :: Image Recognition
49
49
  Classifier: Intended Audience :: Developers
50
50
  Classifier: Intended Audience :: Science/Research
51
- Requires-Python: >=3.8
51
+ Requires-Python: >=3.9
52
52
  Description-Content-Type: text/markdown
53
+ License-File: LICENSE
54
+ Requires-Dist: brainreg>=1.0.0
55
+ Requires-Dist: cellfinder-core>=0.2.4
56
+ Requires-Dist: configobj
57
+ Requires-Dist: fancylog>=0.0.7
58
+ Requires-Dist: imio
59
+ Requires-Dist: brainglobe-utils>=0.2.5
60
+ Requires-Dist: multiprocessing-logging>=0.3.4
61
+ Requires-Dist: natsort
62
+ Requires-Dist: numpy
63
+ Requires-Dist: pandas
64
+ Requires-Dist: packaging
65
+ Requires-Dist: scikit-image
66
+ Requires-Dist: tifffile
67
+ Requires-Dist: tqdm
53
68
  Provides-Extra: dev
69
+ Requires-Dist: black; extra == "dev"
70
+ Requires-Dist: pytest-cov; extra == "dev"
71
+ Requires-Dist: pytest; extra == "dev"
72
+ Requires-Dist: gitpython; extra == "dev"
73
+ Requires-Dist: coverage>=5.0.3; extra == "dev"
74
+ Requires-Dist: pre-commit; extra == "dev"
75
+ Requires-Dist: setuptools_scm; extra == "dev"
54
76
  Provides-Extra: napari
55
- License-File: LICENSE
77
+ Requires-Dist: napari[pyside2]; extra == "napari"
78
+ Requires-Dist: brainglobe-napari-io; extra == "napari"
79
+ Requires-Dist: cellfinder-napari; extra == "napari"
56
80
 
57
81
  [![Python Version](https://img.shields.io/pypi/pyversions/cellfinder.svg)](https://pypi.org/project/cellfinder)
58
82
  [![PyPI](https://img.shields.io/pypi/v/cellfinder.svg)](https://pypi.org/project/cellfinder)
@@ -42,7 +42,7 @@ def cells_exist(points_file):
42
42
 
43
43
  def main():
44
44
  suppress_tf_logging(tf_suppress_log_messages)
45
- from brainreg.main import main as register
45
+ from brainreg.core.main import main as register
46
46
 
47
47
  from cellfinder.tools import prep
48
48
 
@@ -16,8 +16,8 @@ from brainglobe_utils.general.numerical import (
16
16
  check_positive_float,
17
17
  check_positive_int,
18
18
  )
19
- from brainreg.cli import atlas_parse, geometry_parser, niftyreg_parse
20
- from brainreg.cli import backend_parse as brainreg_backend_parse
19
+ from brainreg.core.cli import atlas_parse, geometry_parser, niftyreg_parse
20
+ from brainreg.core.cli import backend_parse as brainreg_backend_parse
21
21
  from cellfinder_core.download.cli import (
22
22
  download_directory_parser,
23
23
  model_parser,
@@ -14,7 +14,7 @@ from pathlib import PurePath
14
14
  from bg_atlasapi import BrainGlobeAtlas
15
15
  from brainglobe_utils.general.exceptions import CommandLineInputError
16
16
  from brainglobe_utils.general.system import ensure_directory_exists
17
- from brainreg.paths import Paths as BrainRegPaths
17
+ from brainreg.core.paths import Paths as BrainRegPaths
18
18
  from fancylog import fancylog
19
19
 
20
20
  import cellfinder as program_for_log
@@ -80,9 +80,9 @@ def get_number_of_bins_nd(array_size, binning):
80
80
  :param binning: How many pixels in each edge of nD equal sized bins
81
81
  :return:
82
82
  """
83
- if type(array_size) is tuple:
83
+ if isinstance(array_size, tuple):
84
84
  bins = [int(size / binning) for size in array_size]
85
- elif type(array_size) is dict:
85
+ elif isinstance(array_size, dict):
86
86
  bins = [int(size / binning) for size in array_size.values()]
87
87
  else:
88
88
  raise NotImplementedError(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cellfinder
3
- Version: 0.7.1
3
+ Version: 0.8.0
4
4
  Summary: Automated 3D cell detection and registration of whole-brain images
5
5
  Author: Christian Niedworok, Charly Rousseau
6
6
  Author-email: Adam Tyson <code@adamltyson.com>
@@ -48,11 +48,35 @@ Classifier: Programming Language :: Python :: 3.10
48
48
  Classifier: Topic :: Scientific/Engineering :: Image Recognition
49
49
  Classifier: Intended Audience :: Developers
50
50
  Classifier: Intended Audience :: Science/Research
51
- Requires-Python: >=3.8
51
+ Requires-Python: >=3.9
52
52
  Description-Content-Type: text/markdown
53
+ License-File: LICENSE
54
+ Requires-Dist: brainreg>=1.0.0
55
+ Requires-Dist: cellfinder-core>=0.2.4
56
+ Requires-Dist: configobj
57
+ Requires-Dist: fancylog>=0.0.7
58
+ Requires-Dist: imio
59
+ Requires-Dist: brainglobe-utils>=0.2.5
60
+ Requires-Dist: multiprocessing-logging>=0.3.4
61
+ Requires-Dist: natsort
62
+ Requires-Dist: numpy
63
+ Requires-Dist: pandas
64
+ Requires-Dist: packaging
65
+ Requires-Dist: scikit-image
66
+ Requires-Dist: tifffile
67
+ Requires-Dist: tqdm
53
68
  Provides-Extra: dev
69
+ Requires-Dist: black; extra == "dev"
70
+ Requires-Dist: pytest-cov; extra == "dev"
71
+ Requires-Dist: pytest; extra == "dev"
72
+ Requires-Dist: gitpython; extra == "dev"
73
+ Requires-Dist: coverage>=5.0.3; extra == "dev"
74
+ Requires-Dist: pre-commit; extra == "dev"
75
+ Requires-Dist: setuptools_scm; extra == "dev"
54
76
  Provides-Extra: napari
55
- License-File: LICENSE
77
+ Requires-Dist: napari[pyside2]; extra == "napari"
78
+ Requires-Dist: brainglobe-napari-io; extra == "napari"
79
+ Requires-Dist: cellfinder-napari; extra == "napari"
56
80
 
57
81
  [![Python Version](https://img.shields.io/pypi/pyversions/cellfinder.svg)](https://pypi.org/project/cellfinder)
58
82
  [![PyPI](https://img.shields.io/pypi/v/cellfinder.svg)](https://pypi.org/project/cellfinder)
@@ -1,4 +1,4 @@
1
- brainreg
1
+ brainreg>=1.0.0
2
2
  cellfinder-core>=0.2.4
3
3
  configobj
4
4
  fancylog>=0.0.7
@@ -3,7 +3,7 @@ name = "cellfinder"
3
3
  description = "Automated 3D cell detection and registration of whole-brain images"
4
4
  readme = "README.md"
5
5
  license = { file = "LICENSE" }
6
- requires-python = ">=3.8"
6
+ requires-python = ">=3.9"
7
7
  authors = [
8
8
  { name = "Adam Tyson", email = "code@adamltyson.com" },
9
9
  { name = "Christian Niedworok" },
@@ -22,7 +22,7 @@ classifiers = [
22
22
  "Intended Audience :: Science/Research",
23
23
  ]
24
24
  dependencies = [
25
- "brainreg",
25
+ "brainreg>=1.0.0",
26
26
  "cellfinder-core>=0.2.4",
27
27
  "configobj",
28
28
  "fancylog>=0.0.7",
File without changes
File without changes
File without changes
File without changes
File without changes