Metadata-Version: 2.1
Name: bioimageit_formats
Version: 0.1.1
Summary: Manage data formats for BioImageIT project
Home-page: https://github.com/bioimageit/bioimageit_formats
Author: Sylvain Prigent
Author-email: sylvain.prigent@inria.fr
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE


# BioImageIT formats

Manage data formats for the BioImageIT project

# Documentation

The documentation is available [here](https://bioimageit.github.io/bioimageit_formats/).

# Development

## Run tests

Test are written with unittest python package. All tests are located in the subpackage bioimagepy/tests.
Run tests with the command:

```bash
cd bioimageit_core
pipenv run python -m unittest discover -v
```

## Build the documentation

The documentation is written with Sphinx. To build is run the commands:

```bash
cd docs
pipenv run sphinx-build -b html ./source ./build
```

## Generate the requirements.txt

The `requirements.txt` file is generated from Pipenv with:

```bash
pipenv lock --requirements > requirements.txt
```
