Metadata-Version: 2.1
Name: bioio-types
Version: 0.0.2
Summary: Typing, base classes, and more for BioIO projects.
Author-email: Eva Maxfield Brown <evamaxfieldbrown@gmail.com>, Dan Toloudis <danielt@alleninstitute.org>
License: BSD License
Project-URL: Homepage, https://github.com/bioio-devs/bioio-types
Project-URL: Bug Tracker, https://github.com/bioio-devs/bioio-types/issues
Project-URL: Documentation, https://bioio-devs.github.io/bioio-types
Project-URL: User Support, https://github.com/bioio-devs/bioio-types/issues
Classifier: Development Status :: 4 - Beta
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: lint
Provides-Extra: test
Provides-Extra: docs
Provides-Extra: dev
License-File: LICENSE

# bioio-types

[![Build Status](https://github.com/bioio-devs/bioio-types/workflows/CI/badge.svg)](https://github.com/bioio-devs/bioio-types/actions)
[![Documentation](https://github.com/bioio-devs/bioio-types/workflows/Documentation/badge.svg)](https://bioio-devs.github.io/bioio-types)

Typing, base classes, and more for BioIO projects.

---

## Installation

**Stable Release:** `pip install bioio-types`<br>
**Development Head:** `pip install git+https://github.com/bioio-devs/bioio-types.git`

## Quickstart

```python
from bioio_types.reader import Reader

class CustomTiffReader(Reader):
    # Your code here
```

```python
from typing import List

from bioio_types.reader_metadata import ReaderMetadata as BaseReaderMetadata

class ReaderMetadata(BaseReaderMetadata):
    @staticmethod
    def get_supported_extensions() -> List[str]:
        return ["tif", "tiff"]

    @staticmethod
    def get_reader() -> base_image_reader.reader.Reader:
        from .custom_tiff_reader import CustomTiffReader

        return CustomTiffReader
```

## Documentation

For full package documentation please visit [bioio-devs.github.io/bioio-types](https://bioio-devs.github.io/bioio-types).

## Development

See [CONTRIBUTING.md](CONTRIBUTING.md) for information related to developing the code.

**BSD License**
