Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 955 Bytes

README.md

File metadata and controls

39 lines (27 loc) · 955 Bytes

simtk: structured illumination microscopy image reconstruction

Build and test License

Open source structured illumination microscopy image reconstruction in an easy-to-use, performant, and extensible package.

Installation

pip install simtk

Hacking

Contributions are welcome and appreciated.

To set up a development build::

git clone https://github.com/sim-reconstruction/simtk
cd simtk

# Install dependencies
pip install -r requirements.txt -r requirements-dev.txt

# Run tests
pytest tests/ -v --benchmark-autosave --cov=simtk

This project uses the black code formatter for a consistent coding style. To apply the formatter:

black simtk/* tests/*