Metadata-Version: 2.4
Name: bioimage_py
Version: 0.2.1
Summary: Efficient, parallel, and distributed implementation of image analysis and segmentation functionality.
Author-email: Constantin Pape <constantin.pape@cs.uni-goettingen.de>
License: MIT License
        
        Copyright (c) 2026 computational-cell-analytics
        
        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:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        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.
        
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: scipy
Requires-Dist: scikit-image>=0.20
Requires-Dist: cloudpickle
Requires-Dist: tqdm
Requires-Dist: threadpoolctl
Requires-Dist: tomli-w
Requires-Dist: bioimage-cpp>=0.5
Provides-Extra: io
Requires-Dist: zarr>=3; extra == "io"
Requires-Dist: z5py; extra == "io"
Provides-Extra: hdf5
Requires-Dist: h5py; extra == "hdf5"
Provides-Extra: mrc
Requires-Dist: mrcfile; extra == "mrc"
Provides-Extra: nifti
Requires-Dist: nibabel; extra == "nifti"
Provides-Extra: imagestack
Requires-Dist: imageio; extra == "imagestack"
Requires-Dist: tifffile; extra == "imagestack"
Provides-Extra: msr
Requires-Dist: msr-reader; extra == "msr"
Provides-Extra: cloudvolume
Requires-Dist: cloud-volume; extra == "cloudvolume"
Provides-Extra: webknossos
Requires-Dist: webknossos; extra == "webknossos"
Provides-Extra: io-all
Requires-Dist: zarr>=3; extra == "io-all"
Requires-Dist: z5py; extra == "io-all"
Requires-Dist: h5py; extra == "io-all"
Requires-Dist: mrcfile; extra == "io-all"
Requires-Dist: nibabel; extra == "io-all"
Requires-Dist: imageio; extra == "io-all"
Requires-Dist: tifffile; extra == "io-all"
Requires-Dist: cloud-volume; extra == "io-all"
Requires-Dist: webknossos; extra == "io-all"
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: zarr>=3; extra == "test"
Requires-Dist: scikit-image; extra == "test"
Requires-Dist: scipy; extra == "test"
Requires-Dist: openpyxl; extra == "test"
Provides-Extra: dev
Requires-Dist: flake8; extra == "dev"
Requires-Dist: pyflakes; extra == "dev"
Provides-Extra: docs
Requires-Dist: pdoc; extra == "docs"
Dynamic: license-file

# bioimage-py

Efficient, parallel, and distributed implementation of image analysis and segmentation functionality for biomedical imaging.

**Note:** this package is in an early state and mainly provides support for data conversion, downsampling, and some initial segmentation functionality (connected components and watershed).
The functionality will be extended soon; the implementation of seamlessly switching between local and distributed execution (via slurm) is already in place. Any feedback on issues you find or on how to improve usability is welcome!

This package can be installed via `pip`:
```bash
pip install bioimage-py
```
and `conda`:
```bash
conda install -c conda-forge bioimage-py
```

See the [documentation](https://computational-cell-analytics.github.io/bioimage-py/) 
for more detailed [installation instructions](https://computational-cell-analytics.github.io/bioimage-py/bioimage_py.html#installation) 
and [usage examples](https://computational-cell-analytics.github.io/bioimage-py/bioimage_py.html#usage).
