Metadata-Version: 2.1
Name: py-sr25519-bindings
Version: 0.1.1
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Summary: Python bindings for sr25519 library
Home-Page: https://github.com/polkascan/py-sr25519-bindings
Author: openAware B.V.
Maintainer: openAware B.V.
Maintainer-Email: legal@openaware.com
License: GPL-3.0+
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# py-sr25519-bindings
Python bindings for sr25519 library: https://github.com/w3f/schnorrkel

Reference to https://github.com/LocalCoinSwap/kusama-reference-implementation/tree/improve-trading-tests/bindings and https://gitlab.com/kauriid/schnorrpy/ for the initial work 

## Installation

### Install from PyPI

```
pip install py-sr25519-bindings
```

### Compile for local development

```
pip install -r requirements.txt
maturin develop
```
### Build wheelhouses
```
pip install -r requirements.txt

# Build local OS wheelhouse
maturin build

# Build manylinux1 wheelhouse
docker build . --tag polkasource/maturin
docker run --rm -i -v $(pwd):/io polkasource/maturin build

```

## License
https://github.com/polkascan/py-sr25519-bindings/blob/master/LICENSE

