Metadata-Version: 2.4
Name: micromorph
Version: 0.0.1
Summary: Microbial Morphology analysis in Python.
Author-email: Simone Coppola <33969789+simonecoppola@users.noreply.github.com>
License: BSD 3-Clause License
License-File: LICENSE
Requires-Python: >=3.11
Requires-Dist: lmfit>=1.3.4
Requires-Dist: natsort>=8.4.0
Requires-Dist: omnipose>=1.0.6
Requires-Dist: pandas>=2.3.3
Requires-Dist: scikit-image>=0.25.2
Requires-Dist: scipy==1.11.4
Requires-Dist: shapely>=2.1.2
Requires-Dist: tqdm>=0.0.1
Provides-Extra: docs
Requires-Dist: mkdocs-material>=9.6.22; extra == 'docs'
Requires-Dist: mkdocs-video>=1.5.0; extra == 'docs'
Requires-Dist: mkdocs>=1.6.1; extra == 'docs'
Requires-Dist: mkdocstrings-python>=1.18.2; extra == 'docs'
Requires-Dist: mkdocstrings>=0.30.1; extra == 'docs'
Requires-Dist: pygments>=2.19.2; extra == 'docs'
Requires-Dist: pymdown-extensions>=10.16.1; extra == 'docs'
Provides-Extra: gui
Requires-Dist: pyqt6>=6.9.1; extra == 'gui'
Requires-Dist: qtpy>=2.4.3; extra == 'gui'
Requires-Dist: superqt>=0.7.6; extra == 'gui'
Description-Content-Type: text/markdown

# micromorph
![alt text](logo.png)
`micromorph` is a python package designed to perform morphological measurements of bacteria. It is available to use as a python package, or through a graphical interface via a napari plugin.

Link to preprint?

# Installation

If you only want to use the python package, you can install it by running

`pip install micromorph`

If you want to  install the dependencies required to open the `micromorph-batchtools` utility, run

`pip install micromorph[gui]`

If you would like to install the more complete gui available with the napari plugin, please refer to the instructions at [napari-micromorph](https://github.com/HoldenLab/napari-micromorph).

# Documentation

Documentation is available here.

# Example Usage

We provide some example scripts and example data, which you can find at `examples` and `test-data`.

# Contributing

Feel free to open issues or pull requests if you spot any bugs to our software or would like to suggest improvements!

You can install an editable version of the package by cloning this GitHub repository and installing the local version of the package on your environment by running `pip install -e .` after navigating to the folder in your terminal.

Packages required to build the documentation are available if you install the software with `pip install micromorph[docs]`. You can then build the documentation by running the command `mkdocs serve`, which will make the documentation available locally (typically at `http://127.0.0.1:8000/`). You can add the flag `--livereload` to ensure the documentation is automatically rebuilt upon editing. 