cellfinder 0.7.0__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 (47) hide show
  1. {cellfinder-0.7.0 → cellfinder-0.8.0}/.gitignore +3 -1
  2. cellfinder-0.8.0/MANIFEST.in +18 -0
  3. {cellfinder-0.7.0 → cellfinder-0.8.0}/PKG-INFO +64 -10
  4. cellfinder-0.8.0/cellfinder/__init__.py +7 -0
  5. {cellfinder-0.7.0 → cellfinder-0.8.0}/cellfinder/main.py +1 -1
  6. {cellfinder-0.7.0 → cellfinder-0.8.0}/cellfinder/tools/parser.py +2 -2
  7. {cellfinder-0.7.0 → cellfinder-0.8.0}/cellfinder/tools/prep.py +1 -1
  8. {cellfinder-0.7.0 → cellfinder-0.8.0}/cellfinder/tools/tools.py +2 -2
  9. {cellfinder-0.7.0 → cellfinder-0.8.0}/cellfinder.egg-info/PKG-INFO +64 -10
  10. {cellfinder-0.7.0 → cellfinder-0.8.0}/cellfinder.egg-info/SOURCES.txt +1 -11
  11. cellfinder-0.8.0/cellfinder.egg-info/entry_points.txt +2 -0
  12. {cellfinder-0.7.0 → cellfinder-0.8.0}/cellfinder.egg-info/requires.txt +2 -3
  13. cellfinder-0.8.0/pyproject.toml +88 -0
  14. cellfinder-0.8.0/setup.cfg +4 -0
  15. cellfinder-0.7.0/.pre-commit-config.yaml +0 -28
  16. cellfinder-0.7.0/Dockerfile +0 -4
  17. cellfinder-0.7.0/MANIFEST.in +0 -5
  18. cellfinder-0.7.0/cellfinder/__init__.py +0 -3
  19. cellfinder-0.7.0/cellfinder/train/__init__.py +0 -0
  20. cellfinder-0.7.0/cellfinder/train/curation.py +0 -355
  21. cellfinder-0.7.0/cellfinder/train/curation_old.py +0 -287
  22. cellfinder-0.7.0/cellfinder.egg-info/entry_points.txt +0 -4
  23. cellfinder-0.7.0/environment.yml +0 -7
  24. cellfinder-0.7.0/pyproject.toml +0 -10
  25. cellfinder-0.7.0/pytest.ini +0 -5
  26. cellfinder-0.7.0/setup.cfg +0 -36
  27. cellfinder-0.7.0/setup.py +0 -83
  28. cellfinder-0.7.0/tox.ini +0 -25
  29. {cellfinder-0.7.0 → cellfinder-0.8.0}/LICENSE +0 -0
  30. {cellfinder-0.7.0 → cellfinder-0.8.0}/README.md +0 -0
  31. {cellfinder-0.7.0 → cellfinder-0.8.0}/cellfinder/analyse/__init__.py +0 -0
  32. {cellfinder-0.7.0 → cellfinder-0.8.0}/cellfinder/analyse/analyse.py +0 -0
  33. {cellfinder-0.7.0 → cellfinder-0.8.0}/cellfinder/export/__init__.py +0 -0
  34. {cellfinder-0.7.0 → cellfinder-0.8.0}/cellfinder/export/abc4d.py +0 -0
  35. {cellfinder-0.7.0 → cellfinder-0.8.0}/cellfinder/export/brainrender.py +0 -0
  36. {cellfinder-0.7.0 → cellfinder-0.8.0}/cellfinder/export/export.py +0 -0
  37. {cellfinder-0.7.0 → cellfinder-0.8.0}/cellfinder/extract/__init__.py +0 -0
  38. {cellfinder-0.7.0 → cellfinder-0.8.0}/cellfinder/extract/extract_cubes.py +0 -0
  39. {cellfinder-0.7.0 → cellfinder-0.8.0}/cellfinder/figures/__init__.py +0 -0
  40. {cellfinder-0.7.0 → cellfinder-0.8.0}/cellfinder/figures/figures.py +0 -0
  41. {cellfinder-0.7.0 → cellfinder-0.8.0}/cellfinder/figures/heatmap.py +0 -0
  42. {cellfinder-0.7.0 → cellfinder-0.8.0}/cellfinder/tools/__init__.py +0 -0
  43. {cellfinder-0.7.0 → cellfinder-0.8.0}/cellfinder/tools/image_processing.py +0 -0
  44. {cellfinder-0.7.0 → cellfinder-0.8.0}/cellfinder/tools/system.py +0 -0
  45. {cellfinder-0.7.0 → cellfinder-0.8.0}/cellfinder.egg-info/dependency_links.txt +0 -0
  46. {cellfinder-0.7.0 → cellfinder-0.8.0}/cellfinder.egg-info/not-zip-safe +0 -0
  47. {cellfinder-0.7.0 → cellfinder-0.8.0}/cellfinder.egg-info/top_level.txt +0 -0
@@ -2,7 +2,7 @@
2
2
  *.conf.custom
3
3
 
4
4
  # Byte-compiled / optimized / DLL files
5
- __pycache__/
5
+ **/__pycache__/**
6
6
  *.py[cod]
7
7
  *$py.class
8
8
 
@@ -122,3 +122,5 @@ venv.bak/
122
122
  pip-wheel-metadata/
123
123
 
124
124
  *.DS_Store
125
+
126
+ *.vscode/
@@ -0,0 +1,18 @@
1
+ include README.md
2
+ include LICENSE
3
+
4
+ exclude *.yaml
5
+ exclude *.yml
6
+ exclude Dockerfile
7
+ exclude *.ini
8
+
9
+ recursive-include cellfinder *.py
10
+ include cellfinder/config/*
11
+
12
+ global-include *.pxd
13
+
14
+ prune tests
15
+ prune resources
16
+
17
+ prune .github
18
+ prune .tox
@@ -1,13 +1,43 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cellfinder
3
- Version: 0.7.0
3
+ Version: 0.8.0
4
4
  Summary: Automated 3D cell detection and registration of whole-brain images
5
- Home-page: https://brainglobe.info/cellfinder
6
- Author: Adam Tyson, Christian Niedworok, Charly Rousseau
7
- Author-email: code@adamltyson.com
8
- Project-URL: Source Code, https://github.com/brainglobe/cellfinder
9
- Project-URL: Bug Tracker, https://github.com/brainglobe/cellfinder/issues
10
- Project-URL: Documentation, https://docs.brainglobe.info/cellfinder
5
+ Author: Christian Niedworok, Charly Rousseau
6
+ Author-email: Adam Tyson <code@adamltyson.com>
7
+ License: BSD 3-Clause License
8
+
9
+ Copyright (c) 2020, University College London
10
+ All rights reserved.
11
+
12
+ Redistribution and use in source and binary forms, with or without
13
+ modification, are permitted provided that the following conditions are met:
14
+
15
+ * Redistributions of source code must retain the above copyright notice, this
16
+ list of conditions and the following disclaimer.
17
+
18
+ * Redistributions in binary form must reproduce the above copyright notice,
19
+ this list of conditions and the following disclaimer in the documentation
20
+ and/or other materials provided with the distribution.
21
+
22
+ * Neither the name of the copyright holder nor the names of its
23
+ contributors may be used to endorse or promote products derived from
24
+ this software without specific prior written permission.
25
+
26
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
27
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
29
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
30
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
32
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
33
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
34
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36
+
37
+ Project-URL: source, https://github.com/brainglobe/cellfinder
38
+ Project-URL: bug_tracker, https://github.com/brainglobe/cellfinder/issues
39
+ Project-URL: homepage, https://brainglobe.info
40
+ Project-URL: documentation, https://brainglobe.info/documentation/cellfinder
11
41
  Classifier: Development Status :: 3 - Alpha
12
42
  Classifier: Operating System :: POSIX :: Linux
13
43
  Classifier: Operating System :: Microsoft :: Windows :: Windows 10
@@ -18,11 +48,35 @@ Classifier: Programming Language :: Python :: 3.10
18
48
  Classifier: Topic :: Scientific/Engineering :: Image Recognition
19
49
  Classifier: Intended Audience :: Developers
20
50
  Classifier: Intended Audience :: Science/Research
21
- Requires-Python: >=3.8
51
+ Requires-Python: >=3.9
22
52
  Description-Content-Type: text/markdown
23
- Provides-Extra: napari
24
- Provides-Extra: dev
25
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
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"
76
+ Provides-Extra: napari
77
+ Requires-Dist: napari[pyside2]; extra == "napari"
78
+ Requires-Dist: brainglobe-napari-io; extra == "napari"
79
+ Requires-Dist: cellfinder-napari; extra == "napari"
26
80
 
27
81
  [![Python Version](https://img.shields.io/pypi/pyversions/cellfinder.svg)](https://pypi.org/project/cellfinder)
28
82
  [![PyPI](https://img.shields.io/pypi/v/cellfinder.svg)](https://pypi.org/project/cellfinder)
@@ -0,0 +1,7 @@
1
+ from importlib.metadata import metadata
2
+
3
+ __version__ = metadata("cellfinder")["version"]
4
+ __author__ = metadata("cellfinder")["author-email"]
5
+ __license__ = metadata("cellfinder")["license"]
6
+
7
+ del metadata
@@ -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,13 +1,43 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cellfinder
3
- Version: 0.7.0
3
+ Version: 0.8.0
4
4
  Summary: Automated 3D cell detection and registration of whole-brain images
5
- Home-page: https://brainglobe.info/cellfinder
6
- Author: Adam Tyson, Christian Niedworok, Charly Rousseau
7
- Author-email: code@adamltyson.com
8
- Project-URL: Source Code, https://github.com/brainglobe/cellfinder
9
- Project-URL: Bug Tracker, https://github.com/brainglobe/cellfinder/issues
10
- Project-URL: Documentation, https://docs.brainglobe.info/cellfinder
5
+ Author: Christian Niedworok, Charly Rousseau
6
+ Author-email: Adam Tyson <code@adamltyson.com>
7
+ License: BSD 3-Clause License
8
+
9
+ Copyright (c) 2020, University College London
10
+ All rights reserved.
11
+
12
+ Redistribution and use in source and binary forms, with or without
13
+ modification, are permitted provided that the following conditions are met:
14
+
15
+ * Redistributions of source code must retain the above copyright notice, this
16
+ list of conditions and the following disclaimer.
17
+
18
+ * Redistributions in binary form must reproduce the above copyright notice,
19
+ this list of conditions and the following disclaimer in the documentation
20
+ and/or other materials provided with the distribution.
21
+
22
+ * Neither the name of the copyright holder nor the names of its
23
+ contributors may be used to endorse or promote products derived from
24
+ this software without specific prior written permission.
25
+
26
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
27
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
29
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
30
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
32
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
33
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
34
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36
+
37
+ Project-URL: source, https://github.com/brainglobe/cellfinder
38
+ Project-URL: bug_tracker, https://github.com/brainglobe/cellfinder/issues
39
+ Project-URL: homepage, https://brainglobe.info
40
+ Project-URL: documentation, https://brainglobe.info/documentation/cellfinder
11
41
  Classifier: Development Status :: 3 - Alpha
12
42
  Classifier: Operating System :: POSIX :: Linux
13
43
  Classifier: Operating System :: Microsoft :: Windows :: Windows 10
@@ -18,11 +48,35 @@ Classifier: Programming Language :: Python :: 3.10
18
48
  Classifier: Topic :: Scientific/Engineering :: Image Recognition
19
49
  Classifier: Intended Audience :: Developers
20
50
  Classifier: Intended Audience :: Science/Research
21
- Requires-Python: >=3.8
51
+ Requires-Python: >=3.9
22
52
  Description-Content-Type: text/markdown
23
- Provides-Extra: napari
24
- Provides-Extra: dev
25
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
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"
76
+ Provides-Extra: napari
77
+ Requires-Dist: napari[pyside2]; extra == "napari"
78
+ Requires-Dist: brainglobe-napari-io; extra == "napari"
79
+ Requires-Dist: cellfinder-napari; extra == "napari"
26
80
 
27
81
  [![Python Version](https://img.shields.io/pypi/pyversions/cellfinder.svg)](https://pypi.org/project/cellfinder)
28
82
  [![PyPI](https://img.shields.io/pypi/v/cellfinder.svg)](https://pypi.org/project/cellfinder)
@@ -1,15 +1,8 @@
1
1
  .gitignore
2
- .pre-commit-config.yaml
3
- Dockerfile
4
2
  LICENSE
5
3
  MANIFEST.in
6
4
  README.md
7
- environment.yml
8
5
  pyproject.toml
9
- pytest.ini
10
- setup.cfg
11
- setup.py
12
- tox.ini
13
6
  cellfinder/__init__.py
14
7
  cellfinder/main.py
15
8
  cellfinder.egg-info/PKG-INFO
@@ -35,7 +28,4 @@ cellfinder/tools/image_processing.py
35
28
  cellfinder/tools/parser.py
36
29
  cellfinder/tools/prep.py
37
30
  cellfinder/tools/system.py
38
- cellfinder/tools/tools.py
39
- cellfinder/train/__init__.py
40
- cellfinder/train/curation.py
41
- cellfinder/train/curation_old.py
31
+ cellfinder/tools/tools.py
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ cellfinder = cellfinder.main:main
@@ -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
@@ -19,9 +19,8 @@ pytest-cov
19
19
  pytest
20
20
  gitpython
21
21
  coverage>=5.0.3
22
- bump2version
23
22
  pre-commit
24
- flake8
23
+ setuptools_scm
25
24
 
26
25
  [napari]
27
26
  napari[pyside2]
@@ -0,0 +1,88 @@
1
+ [project]
2
+ name = "cellfinder"
3
+ description = "Automated 3D cell detection and registration of whole-brain images"
4
+ readme = "README.md"
5
+ license = { file = "LICENSE" }
6
+ requires-python = ">=3.9"
7
+ authors = [
8
+ { name = "Adam Tyson", email = "code@adamltyson.com" },
9
+ { name = "Christian Niedworok" },
10
+ { name = "Charly Rousseau" },
11
+ ]
12
+ classifiers = [
13
+ "Development Status :: 3 - Alpha",
14
+ "Operating System :: POSIX :: Linux",
15
+ "Operating System :: Microsoft :: Windows :: Windows 10",
16
+ "Programming Language :: Python",
17
+ "Programming Language :: Python :: 3.8",
18
+ "Programming Language :: Python :: 3.9",
19
+ "Programming Language :: Python :: 3.10",
20
+ "Topic :: Scientific/Engineering :: Image Recognition",
21
+ "Intended Audience :: Developers",
22
+ "Intended Audience :: Science/Research",
23
+ ]
24
+ dependencies = [
25
+ "brainreg>=1.0.0",
26
+ "cellfinder-core>=0.2.4",
27
+ "configobj",
28
+ "fancylog>=0.0.7",
29
+ "imio",
30
+ "brainglobe-utils>=0.2.5",
31
+ "multiprocessing-logging>=0.3.4",
32
+ "natsort",
33
+ "numpy",
34
+ "pandas",
35
+ "packaging",
36
+ "scikit-image",
37
+ "tifffile",
38
+ "tqdm",
39
+ ]
40
+ dynamic = ["version"]
41
+
42
+ [project.scripts]
43
+ cellfinder = "cellfinder.main:main"
44
+
45
+ [project.optional-dependencies]
46
+ dev = [
47
+ "black",
48
+ "pytest-cov",
49
+ "pytest",
50
+ "gitpython",
51
+ "coverage>=5.0.3",
52
+ "pre-commit",
53
+ "setuptools_scm",
54
+ ]
55
+ napari = ["napari[pyside2]", "brainglobe-napari-io", "cellfinder-napari"]
56
+
57
+ [project.urls]
58
+ source = "https://github.com/brainglobe/cellfinder"
59
+ bug_tracker = "https://github.com/brainglobe/cellfinder/issues"
60
+ homepage = "https://brainglobe.info"
61
+ documentation = "https://brainglobe.info/documentation/cellfinder"
62
+ [build-system]
63
+ requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
64
+ build-backend = "setuptools.build_meta"
65
+
66
+ [tool.black]
67
+ target-version = ['py38', 'py39', 'py310']
68
+ skip-string-normalization = false
69
+ line-length = 79
70
+
71
+ [tool.check-manifest]
72
+ ignore = ["*.yaml"]
73
+
74
+ [tool.ruff]
75
+ line-length = 79
76
+ exclude = ["__init__.py", "build", ".eggs"]
77
+ select = ["I", "E", "F"]
78
+ fix = true
79
+
80
+ [tool.setuptools]
81
+ include-package-data = true
82
+ zip-safe = false
83
+
84
+ [tool.setuptools.packages.find]
85
+ include = ["cellfinder"]
86
+ exclude = ["tests", "resources"]
87
+
88
+ [tool.setuptools_scm]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -1,28 +0,0 @@
1
- repos:
2
- - repo: https://github.com/pre-commit/pre-commit-hooks
3
- rev: v4.4.0
4
- hooks:
5
- - id: check-docstring-first
6
- - id: check-executables-have-shebangs
7
- - id: check-merge-conflict
8
- - id: check-toml
9
- - id: end-of-file-fixer
10
- - id: mixed-line-ending
11
- args: [--fix=lf]
12
- - id: requirements-txt-fixer
13
- - id: trailing-whitespace
14
- - repo: https://github.com/astral-sh/ruff-pre-commit
15
- rev: v0.0.281
16
- hooks:
17
- - id: ruff
18
- - repo: https://github.com/psf/black
19
- rev: 23.7.0
20
- hooks:
21
- - id: black
22
- - repo: https://github.com/pre-commit/mirrors-mypy
23
- rev: v1.4.1
24
- hooks:
25
- - id: mypy
26
- additional_dependencies:
27
- - types-setuptools
28
- - types-requests
@@ -1,4 +0,0 @@
1
- FROM tensorflow/tensorflow:latest-gpu
2
- LABEL maintainer="code@adamltyson.com"
3
- RUN pip install cellfinder
4
- CMD ["bash"]
@@ -1,5 +0,0 @@
1
- include cellfinder/config/*
2
- global-include *.pxd
3
- prune tests
4
- prune resources
5
- prune .github
@@ -1,3 +0,0 @@
1
- __version__ = "0.7.0"
2
- __author__ = "Adam Tyson, Christian Niedworok, Charly Rousseau"
3
- __license__ = "BSD-3-Clause"
File without changes