Metadata-Version: 2.1
Name: py-eth-sig-utils
Version: 0.4.0
Summary: Python Ethereum Signing Utils
Home-page: https://github.com/rmeissner/py-eth-sig-utils
Author: Richard Meissner
Author-email: msc.meissner@gmail.com
License: MIT License
Platform: Any
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: eth-abi (>=1.1.1)
Requires-Dist: pycryptodome (>=3.4.7)
Requires-Dist: py-ecc (>=1.7.1)
Requires-Dist: rlp (>=1.1.0)
Provides-Extra: dev

# Python Ethereum Signing Utils

[![Build Status](https://travis-ci.org/rmeissner/py-eth-sig-utils.svg?branch=master)](https://travis-ci.org/rmeissner/py-eth-sig-utils)
[![PyPI version](https://badge.fury.io/py/py-eth-sig-utils.svg)](https://pypi.org/project/py-eth-sig-utils/)

### Type Data Hashes

This utils contain methods to generate hashes of typed data based on [EIP-712](https://github.com/ethereum/EIPs/blob/master/EIPS/eip-712.md).

### Setup

1. `virtualenv env -p python3`
1. `pip install -r requirements.txt`
1. `python -m unittest`

### Deploy

Library is automatically deployed if a tag is created.

Manual deployment can be peformed with:
```bash
python setup.py sdist bdist_wheel
twine upload dist/*
```


