Metadata-Version: 2.1
Name: protocolinterface
Version: 0.2.0
Summary: ProtocolInterface: A class to make python classes validate arguments.
Home-page: https://github.com/acellera/protocolinterface/
Author: Acellera
Author-email: info@acellera.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Operating System :: POSIX :: Linux
Description-Content-Type: text/markdown
Requires-Dist: numpy

# protocolinterface

## Releasing

First, test the code:

```
python -m pytest tests/test_protocolinterface.py
```

If it passes the tests, it can be released with:

```
git tag 0.X.Y # tag the version of the release
cd package
make
git push --tags
```

builds and uploads the package

## Installing:


```
conda install protocolinterface -c acellera
```


