Metadata-Version: 1.1
Name: eth-abi
Version: 0.5.0
Summary: Ethereum ABI Utils
Home-page: https://github.com/ethereum/eth-abi
Author: Piper Merriam
Author-email: pipermerriam@gmail.com
License: MIT
Description-Content-Type: UNKNOWN
Description: Ethereum Contract
        =================
        
        |Build Status| |Documentation Status| |PyPi version| |PyPi downloads|
        
        Python utilities for working with the Ethereum ABI
        
        Installation
        ------------
        
        .. code:: sh
        
            pip install eth-abi
        
        Development
        -----------
        
        Clone the repository and then run:
        
        .. code:: sh
        
            pip install -e . -r requirements-dev.txt
        
        Running the tests
        ~~~~~~~~~~~~~~~~~
        
        You can run the tests with:
        
        .. code:: sh
        
            py.test tests
        
        Or you can install ``tox`` to run the full test suite.
        
        Releasing
        ~~~~~~~~~
        
        Pandoc is required for transforming the markdown README to the proper
        format to render correctly on pypi.
        
        For Debian-like systems:
        
        ::
        
            apt install pandoc
        
        Or on OSX:
        
        .. code:: sh
        
            brew install pandoc
        
        To release a new version:
        
        .. code:: sh
        
            bumpversion $$VERSION_PART_TO_BUMP$$
            git push && git push --tags
            make release
        
        How to bumpversion
        ^^^^^^^^^^^^^^^^^^
        
        The version format for this repo is ``{major}.{minor}.{patch}`` for
        stable, and ``{major}.{minor}.{patch}-{stage}.{devnum}`` for unstable
        (``stage`` can be alpha or beta).
        
        To issue the next version in line, use bumpversion and specify which
        part to bump, like ``bumpversion minor`` or ``bumpversion devnum``.
        
        If you are in a beta version, ``bumpversion stage`` will switch to a
        stable.
        
        To issue an unstable version when the current version is stable, specify
        the new version explicitly, like
        ``bumpversion --new-version 4.0.0-alpha.1 devnum``
        
        .. |Build Status| image:: https://travis-ci.org/ethereum/eth-abi.png
           :target: https://travis-ci.org/ethereum/eth-abi
        .. |Documentation Status| image:: https://readthedocs.org/projects/eth-abi/badge/?version=latest
           :target: https://readthedocs.org/projects/eth-abi/?badge=latest
        .. |PyPi version| image:: https://pypip.in/v/eth-abi/badge.png
           :target: https://pypi.python.org/pypi/eth-abi
        .. |PyPi downloads| image:: https://pypip.in/d/eth-abi/badge.png
           :target: https://pypi.python.org/pypi/eth-ipc-utils
        
Keywords: ethereum
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
