copick-utils 0.6.0__tar.gz → 1.0.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.
Files changed (86) hide show
  1. copick_utils-1.0.0/.github/dependabot.yml +16 -0
  2. copick_utils-1.0.0/.github/workflows/conventional-commits.yml +19 -0
  3. copick_utils-1.0.0/.github/workflows/py-formatting.yml +23 -0
  4. copick_utils-1.0.0/.github/workflows/release-please.yml +64 -0
  5. copick_utils-1.0.0/.gitignore +180 -0
  6. copick_utils-1.0.0/.pre-commit-config.yaml +21 -0
  7. copick_utils-1.0.0/.release-please.manifest.json +3 -0
  8. copick_utils-1.0.0/CHANGELOG.md +36 -0
  9. {copick_utils-0.6.0 → copick_utils-1.0.0}/PKG-INFO +38 -12
  10. copick_utils-1.0.0/SECURITY.md +3 -0
  11. copick_utils-1.0.0/examples/segmentation_example.ipynb +239 -0
  12. copick_utils-1.0.0/pyproject.toml +156 -0
  13. copick_utils-1.0.0/release-please.config.json +29 -0
  14. {copick_utils-0.6.0 → copick_utils-1.0.0}/src/copick_utils/__init__.py +1 -0
  15. copick_utils-1.0.0/src/copick_utils/cli/__init__.py +33 -0
  16. copick_utils-1.0.0/src/copick_utils/cli/clipmesh.py +161 -0
  17. copick_utils-1.0.0/src/copick_utils/cli/clippicks.py +154 -0
  18. copick_utils-1.0.0/src/copick_utils/cli/clipseg.py +163 -0
  19. copick_utils-1.0.0/src/copick_utils/cli/conversion_commands.py +32 -0
  20. copick_utils-1.0.0/src/copick_utils/cli/enclosed.py +191 -0
  21. copick_utils-1.0.0/src/copick_utils/cli/filter_components.py +166 -0
  22. copick_utils-1.0.0/src/copick_utils/cli/fit_spline.py +191 -0
  23. copick_utils-1.0.0/src/copick_utils/cli/hull.py +138 -0
  24. copick_utils-1.0.0/src/copick_utils/cli/input_output_selection.py +76 -0
  25. copick_utils-1.0.0/src/copick_utils/cli/logical_commands.py +29 -0
  26. copick_utils-1.0.0/src/copick_utils/cli/mesh2picks.py +170 -0
  27. copick_utils-1.0.0/src/copick_utils/cli/mesh2seg.py +167 -0
  28. copick_utils-1.0.0/src/copick_utils/cli/meshop.py +262 -0
  29. copick_utils-1.0.0/src/copick_utils/cli/picks2ellipsoid.py +171 -0
  30. copick_utils-1.0.0/src/copick_utils/cli/picks2mesh.py +181 -0
  31. copick_utils-1.0.0/src/copick_utils/cli/picks2plane.py +156 -0
  32. copick_utils-1.0.0/src/copick_utils/cli/picks2seg.py +134 -0
  33. copick_utils-1.0.0/src/copick_utils/cli/picks2sphere.py +170 -0
  34. copick_utils-1.0.0/src/copick_utils/cli/picks2surface.py +164 -0
  35. copick_utils-1.0.0/src/copick_utils/cli/picksin.py +146 -0
  36. copick_utils-1.0.0/src/copick_utils/cli/picksout.py +148 -0
  37. copick_utils-1.0.0/src/copick_utils/cli/processing_commands.py +18 -0
  38. copick_utils-1.0.0/src/copick_utils/cli/seg2mesh.py +135 -0
  39. copick_utils-1.0.0/src/copick_utils/cli/seg2picks.py +128 -0
  40. copick_utils-1.0.0/src/copick_utils/cli/segop.py +248 -0
  41. copick_utils-1.0.0/src/copick_utils/cli/separate_components.py +155 -0
  42. copick_utils-1.0.0/src/copick_utils/cli/skeletonize.py +164 -0
  43. copick_utils-1.0.0/src/copick_utils/cli/util.py +580 -0
  44. copick_utils-1.0.0/src/copick_utils/cli/validbox.py +155 -0
  45. copick_utils-1.0.0/src/copick_utils/converters/__init__.py +35 -0
  46. copick_utils-1.0.0/src/copick_utils/converters/converter_common.py +543 -0
  47. copick_utils-1.0.0/src/copick_utils/converters/ellipsoid_from_picks.py +335 -0
  48. copick_utils-1.0.0/src/copick_utils/converters/lazy_converter.py +576 -0
  49. copick_utils-1.0.0/src/copick_utils/converters/mesh_from_picks.py +209 -0
  50. copick_utils-1.0.0/src/copick_utils/converters/mesh_from_segmentation.py +119 -0
  51. copick_utils-1.0.0/src/copick_utils/converters/picks_from_mesh.py +542 -0
  52. copick_utils-1.0.0/src/copick_utils/converters/picks_from_segmentation.py +168 -0
  53. copick_utils-1.0.0/src/copick_utils/converters/plane_from_picks.py +251 -0
  54. copick_utils-1.0.0/src/copick_utils/converters/segmentation_from_mesh.py +291 -0
  55. {copick_utils-0.6.0/src/copick_utils/segmentation → copick_utils-1.0.0/src/copick_utils/converters}/segmentation_from_picks.py +151 -15
  56. copick_utils-1.0.0/src/copick_utils/converters/sphere_from_picks.py +306 -0
  57. copick_utils-1.0.0/src/copick_utils/converters/surface_from_picks.py +337 -0
  58. {copick_utils-0.6.0 → copick_utils-1.0.0}/src/copick_utils/features/skimage.py +33 -13
  59. copick_utils-1.0.0/src/copick_utils/io/readers.py +135 -0
  60. {copick_utils-0.6.0 → copick_utils-1.0.0}/src/copick_utils/io/writers.py +9 -14
  61. copick_utils-1.0.0/src/copick_utils/logical/__init__.py +43 -0
  62. copick_utils-1.0.0/src/copick_utils/logical/distance_operations.py +604 -0
  63. copick_utils-1.0.0/src/copick_utils/logical/enclosed_operations.py +222 -0
  64. copick_utils-1.0.0/src/copick_utils/logical/mesh_operations.py +443 -0
  65. copick_utils-1.0.0/src/copick_utils/logical/point_operations.py +303 -0
  66. copick_utils-1.0.0/src/copick_utils/logical/segmentation_operations.py +399 -0
  67. {copick_utils-0.6.0 → copick_utils-1.0.0}/src/copick_utils/pickers/grid_picker.py +5 -4
  68. copick_utils-1.0.0/src/copick_utils/process/__init__.py +47 -0
  69. copick_utils-1.0.0/src/copick_utils/process/connected_components.py +360 -0
  70. copick_utils-1.0.0/src/copick_utils/process/filter_components.py +306 -0
  71. copick_utils-1.0.0/src/copick_utils/process/hull.py +106 -0
  72. copick_utils-1.0.0/src/copick_utils/process/skeletonize.py +326 -0
  73. copick_utils-1.0.0/src/copick_utils/process/spline_fitting.py +648 -0
  74. copick_utils-1.0.0/src/copick_utils/process/validbox.py +333 -0
  75. copick_utils-1.0.0/src/copick_utils/util/__init__.py +6 -0
  76. copick_utils-1.0.0/src/copick_utils/util/config_models.py +614 -0
  77. copick_utils-1.0.0/tests/__init__.py +15 -0
  78. copick_utils-0.6.0/pyproject.toml +0 -59
  79. copick_utils-0.6.0/src/copick_utils/__about__.py +0 -4
  80. copick_utils-0.6.0/src/copick_utils/io/readers.py +0 -132
  81. copick_utils-0.6.0/src/copick_utils/segmentation/picks_from_segmentation.py +0 -67
  82. /copick_utils-0.6.0/LICENSE.txt → /copick_utils-1.0.0/LICENSE +0 -0
  83. {copick_utils-0.6.0 → copick_utils-1.0.0}/README.md +0 -0
  84. {copick_utils-0.6.0 → copick_utils-1.0.0}/src/copick_utils/features/__init__.py +0 -0
  85. {copick_utils-0.6.0/src/copick_utils/pickers → copick_utils-1.0.0/src/copick_utils/io}/__init__.py +0 -0
  86. {copick_utils-0.6.0/src/copick_utils/segmentation → copick_utils-1.0.0/src/copick_utils/pickers}/__init__.py +0 -0
@@ -0,0 +1,16 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: "uv"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "weekly"
7
+ commit-message:
8
+ prefix: fix
9
+ prefix-development: chore
10
+ - package-ecosystem: "github-actions"
11
+ directory: "/"
12
+ schedule:
13
+ interval: "weekly"
14
+ commit-message:
15
+ prefix: fix
16
+ prefix-development: chore
@@ -0,0 +1,19 @@
1
+ # Validates PR title follows conventional commits
2
+ name: conventional-commits
3
+ on:
4
+ pull_request:
5
+ branches: [main]
6
+ types:
7
+ - edited
8
+ - opened
9
+ - synchronize
10
+ - reopened
11
+
12
+ concurrency:
13
+ group: ${{ github.workflow }}-${{ github.ref }}
14
+ cancel-in-progress: true
15
+ jobs:
16
+ conventional_commit_title:
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - uses: chanzuckerberg/github-actions/.github/actions/conventional-commits@v6.10.0
@@ -0,0 +1,23 @@
1
+ name: Python Linting
2
+
3
+ on:
4
+ pull_request:
5
+ push:
6
+ branches: [main]
7
+
8
+ jobs:
9
+ pre_commit_checks:
10
+ name: pre-commit checks
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v5
14
+ - uses: actions/setup-python@v6
15
+ with:
16
+ python-version: "3.12.5"
17
+ - name: Install action-validator with asdf
18
+ uses: asdf-vm/actions/install@v4
19
+ with:
20
+ tool_versions: |
21
+ action-validator 0.6.0
22
+ - name: check linting
23
+ uses: pre-commit/action@v3.0.1
@@ -0,0 +1,64 @@
1
+ name: Create Release PRs
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches:
7
+ - main
8
+
9
+ permissions:
10
+ contents: write
11
+ issues: write
12
+ pull-requests: write
13
+
14
+ jobs:
15
+ release-please:
16
+ concurrency:
17
+ group: ${{ github.workflow }}-${{ github.ref }}
18
+ cancel-in-progress: true
19
+
20
+ runs-on: ubuntu-latest
21
+ steps:
22
+ - name: release please
23
+ uses: googleapis/release-please-action@v4
24
+ id: release
25
+ with:
26
+ manifest-file: ".release-please.manifest.json"
27
+ config-file: "release-please.config.json"
28
+ target-branch: "main"
29
+ token: ${{ secrets.GITHUB_TOKEN }}
30
+
31
+ outputs:
32
+ paths_released: ${{ steps.release.outputs.paths_released }}
33
+
34
+ publish-pypi-package:
35
+ name: Build and publish Python package to PyPI
36
+ runs-on: ubuntu-latest
37
+ needs: release-please
38
+ if: contains(needs.release-please.outputs.paths_released, '.')
39
+ environment:
40
+ name: pypi
41
+ url: https://pypi.org/p/copick-utils
42
+ permissions:
43
+ id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
44
+ steps:
45
+ - name: Checkout ref branch
46
+ uses: actions/checkout@v5
47
+ with:
48
+ ref: ${{ github.ref }}
49
+ fetch-depth: 0
50
+
51
+ - name: Install uv
52
+ uses: astral-sh/setup-uv@v7
53
+ with:
54
+ version: "0.7.13"
55
+ python-version: "3.12"
56
+
57
+ - name: build
58
+ run: |
59
+ uv build
60
+
61
+ - name: Publish distribution 📦 to PyPI
62
+ uses: pypa/gh-action-pypi-publish@release/v1
63
+ with:
64
+ packages-dir: dist
@@ -0,0 +1,180 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py,cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Mac stuff
59
+ .DS_Store
60
+
61
+ # Django stuff:
62
+ *.log
63
+ local_settings.py
64
+ db.sqlite3
65
+ db.sqlite3-journal
66
+
67
+ # Flask stuff:
68
+ instance/
69
+ .webassets-cache
70
+
71
+ # Scrapy stuff:
72
+ .scrapy
73
+
74
+ # Sphinx documentation
75
+ docs/_build/
76
+
77
+ # PyBuilder
78
+ .pybuilder/
79
+ target/
80
+
81
+ # Jupyter Notebook
82
+ .ipynb_checkpoints
83
+
84
+ # IPython
85
+ profile_default/
86
+ ipython_config.py
87
+
88
+ # pyenv
89
+ # For a library or package, you might want to ignore these files since the code is
90
+ # intended to run in multiple environments; otherwise, check them in:
91
+ # .python-version
92
+
93
+ # pipenv
94
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
95
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
96
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
97
+ # install all needed dependencies.
98
+ #Pipfile.lock
99
+
100
+ # UV
101
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
102
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
103
+ # commonly ignored for libraries.
104
+ #uv.lock
105
+
106
+ # poetry
107
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
108
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
109
+ # commonly ignored for libraries.
110
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
111
+ #poetry.lock
112
+
113
+ # pdm
114
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
115
+ #pdm.lock
116
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
117
+ # in version control.
118
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
119
+ .pdm.toml
120
+ .pdm-python
121
+ .pdm-build/
122
+
123
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
124
+ __pypackages__/
125
+
126
+ # Celery stuff
127
+ celerybeat-schedule
128
+ celerybeat.pid
129
+
130
+ # SageMath parsed files
131
+ *.sage.py
132
+
133
+ # Environments
134
+ .env
135
+ .venv
136
+ env/
137
+ venv/
138
+ ENV/
139
+ env.bak/
140
+ venv.bak/
141
+
142
+ # Spyder project settings
143
+ .spyderproject
144
+ .spyproject
145
+
146
+ # Rope project settings
147
+ .ropeproject
148
+
149
+ # mkdocs documentation
150
+ /site
151
+
152
+ # mypy
153
+ .mypy_cache/
154
+ .dmypy.json
155
+ dmypy.json
156
+
157
+ # Pyre type checker
158
+ .pyre/
159
+
160
+ # pytype static type analyzer
161
+ .pytype/
162
+
163
+ # Cython debug symbols
164
+ cython_debug/
165
+
166
+ # Ignore Downloaded SAM2 Weights
167
+ saber/checkpoints/*
168
+
169
+ # PyCharm
170
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
171
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
172
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
173
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
174
+ #.idea/
175
+
176
+ # Ruff stuff:
177
+ .ruff_cache/
178
+
179
+ # PyPI configuration file
180
+ .pypirc
@@ -0,0 +1,21 @@
1
+ repos:
2
+ - repo: https://github.com/psf/black-pre-commit-mirror
3
+ rev: 23.9.1
4
+ hooks:
5
+ - id: black
6
+ - repo: https://github.com/astral-sh/ruff-pre-commit
7
+ rev: v0.0.292
8
+ hooks:
9
+ - id: ruff
10
+ args:
11
+ - --fix
12
+ - repo: https://github.com/pre-commit/pre-commit-hooks
13
+ rev: v4.5.0
14
+ hooks:
15
+ - id: check-toml
16
+ - id: check-yaml
17
+ exclude: 'mkdocs.yml'
18
+ - id: check-json
19
+ - id: check-merge-conflict
20
+ - id: end-of-file-fixer
21
+ - id: trailing-whitespace
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "1.0.0"
3
+ }
@@ -0,0 +1,36 @@
1
+ # Changelog
2
+
3
+ ## [1.0.0](https://github.com/copick/copick-utils/compare/copick-utils-v0.6.1...copick-utils-v1.0.0) (2025-10-16)
4
+
5
+
6
+ ### ⚠ BREAKING CHANGES
7
+
8
+ * Conversion, logical and processing commands for copick-utils CLI ([#24](https://github.com/copick/copick-utils/issues/24))
9
+
10
+ ### ✨ Features
11
+
12
+ * Conversion, logical and processing commands for copick-utils CLI ([#24](https://github.com/copick/copick-utils/issues/24)) ([d455fd2](https://github.com/copick/copick-utils/commit/d455fd217f4cd4edf18cfe8da48d951799fa272a))
13
+
14
+
15
+ ### 🐞 Bug Fixes
16
+
17
+ * bump actions/checkout from 4 to 5 ([#22](https://github.com/copick/copick-utils/issues/22)) ([287ac56](https://github.com/copick/copick-utils/commit/287ac566545d5c8b496dfdc0ae7e18456337de52))
18
+ * bump actions/setup-python from 5 to 6 ([#25](https://github.com/copick/copick-utils/issues/25)) ([f3ed071](https://github.com/copick/copick-utils/commit/f3ed071dafa9469daee9f62a9a06319de4c76d63))
19
+ * bump astral-sh/setup-uv from 6 to 7 ([#30](https://github.com/copick/copick-utils/issues/30)) ([b3028ef](https://github.com/copick/copick-utils/commit/b3028ef908f0e0d42cf418abb5169ab3a87556eb))
20
+ * bump chanzuckerberg/github-actions from 6.4.0 to 6.5.0 ([#20](https://github.com/copick/copick-utils/issues/20)) ([13056ae](https://github.com/copick/copick-utils/commit/13056ae6ee0fc0132c20b5f0539614c9d4d4aa24))
21
+ * bump chanzuckerberg/github-actions from 6.5.0 to 6.6.0 ([#23](https://github.com/copick/copick-utils/issues/23)) ([2c6a994](https://github.com/copick/copick-utils/commit/2c6a99497098073cecb52b5094da9f6ede040c4a))
22
+ * bump chanzuckerberg/github-actions from 6.6.0 to 6.10.0 ([#29](https://github.com/copick/copick-utils/issues/29)) ([bb50f1e](https://github.com/copick/copick-utils/commit/bb50f1ee9070cf33cee6d78e64aefe5063e5f0eb))
23
+
24
+ ## [0.6.1](https://github.com/copick/copick-utils/compare/copick-utils-v0.6.0...copick-utils-v0.6.1) (2025-07-16)
25
+
26
+
27
+ ### 🐞 Bug Fixes
28
+
29
+ * bump actions/checkout from 3 to 4 ([#19](https://github.com/copick/copick-utils/issues/19)) ([570072f](https://github.com/copick/copick-utils/commit/570072f708ea47b54d00fcc24451401896c91e25))
30
+ * bump actions/setup-python from 4 to 5 ([#17](https://github.com/copick/copick-utils/issues/17)) ([95c4784](https://github.com/copick/copick-utils/commit/95c47842e6a271ae40f69a9f9a578ef55d3d318b))
31
+ * bump asdf-vm/actions from 3 to 4 ([#18](https://github.com/copick/copick-utils/issues/18)) ([039b576](https://github.com/copick/copick-utils/commit/039b5761c4bc6b128f1bfef1aa2e7bf612f42ea3))
32
+
33
+
34
+ ### 🧹 Miscellaneous Chores
35
+
36
+ * Set up CI for copick-utils ([#14](https://github.com/copick/copick-utils/issues/14)) ([0fbcfbb](https://github.com/copick/copick-utils/commit/0fbcfbb5bc12261da52e0850531195049328c2f9))
@@ -1,15 +1,25 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: copick-utils
3
- Version: 0.6.0
3
+ Version: 1.0.0
4
4
  Summary: Utilities for copick
5
- License: MIT
6
- Author: Kyle Harrington
7
- Author-email: czi@kyleharrington.com
8
- Requires-Python: >=3.9
5
+ Project-URL: Repository, https://github.com/KyleHarrington/copick-utils.git
6
+ Project-URL: Issues, https://github.com/KyleHarrington/copick-utils/issues
7
+ Project-URL: Documentation, https://github.com/KyleHarrington/copick-utils#readme
8
+ Author-email: Kyle Harrington <czi@kyleharrington.com>, Jonathan Schwartz <jonathan.schwartz@czii.org>
9
+ License: MIT License
10
+
11
+ Copyright (c) 2024-present Kyle Harrington <czi@kyleharrington.com>
12
+
13
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
14
+
15
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
18
+ License-File: LICENSE
19
+ Keywords: annotation,copick,cryo-et,cryoet,tomography,utilities
9
20
  Classifier: Development Status :: 4 - Beta
10
21
  Classifier: License :: OSI Approved :: MIT License
11
22
  Classifier: Programming Language :: Python
12
- Classifier: Programming Language :: Python :: 3
13
23
  Classifier: Programming Language :: Python :: 3.9
14
24
  Classifier: Programming Language :: Python :: 3.10
15
25
  Classifier: Programming Language :: Python :: 3.11
@@ -17,10 +27,27 @@ Classifier: Programming Language :: Python :: 3.12
17
27
  Classifier: Programming Language :: Python :: 3.13
18
28
  Classifier: Programming Language :: Python :: Implementation :: CPython
19
29
  Classifier: Programming Language :: Python :: Implementation :: PyPy
20
- Requires-Dist: copick (>=0.8.0)
21
- Project-URL: Documentation, https://github.com/KyleHarrington/copick-utils#readme
22
- Project-URL: Issues, https://github.com/KyleHarrington/copick-utils/issues
23
- Project-URL: Source, https://github.com/KyleHarrington/copick-utils
30
+ Requires-Python: >=3.9
31
+ Requires-Dist: click
32
+ Requires-Dist: click-option-group
33
+ Requires-Dist: copick>=1.16.0
34
+ Requires-Dist: manifold3d
35
+ Requires-Dist: mapbox-earcut
36
+ Requires-Dist: numpy
37
+ Requires-Dist: rtree
38
+ Requires-Dist: scikit-image
39
+ Requires-Dist: scikit-learn
40
+ Requires-Dist: scipy
41
+ Requires-Dist: shapely
42
+ Requires-Dist: tqdm
43
+ Requires-Dist: trimesh
44
+ Requires-Dist: zarr
45
+ Provides-Extra: dev
46
+ Requires-Dist: black>=25.1.0; extra == 'dev'
47
+ Requires-Dist: hatch-vcs>=0.4.0; extra == 'dev'
48
+ Requires-Dist: hatchling>=1.25.0; extra == 'dev'
49
+ Requires-Dist: pre-commit>=4.2.0; extra == 'dev'
50
+ Requires-Dist: ruff>=0.12.0; extra == 'dev'
24
51
  Description-Content-Type: text/markdown
25
52
 
26
53
  # copick-utils
@@ -69,4 +96,3 @@ This project adheres to the Contributor Covenant [code of conduct](https://githu
69
96
  ## Reporting Security Issues
70
97
 
71
98
  If you believe you have found a security issue, please responsibly disclose by contacting us at [security@chanzuckerberg.com](mailto:security@chanzuckerberg.com).
72
-
@@ -0,0 +1,3 @@
1
+ ## Reporting Security Issues
2
+
3
+ If you believe you have found a security issue, please responsibly disclose by contacting us at [security@chanzuckerberg.com](mailto:security@chanzuckerberg.com).