Metadata-Version: 2.1
Name: rlp
Version: 3.0.0
Summary: A package for Recursive Length Prefix encoding and decoding
Home-page: https://github.com/ethereum/pyrlp
Author: jnnk
Author-email: jnnknnj@gmail.com
License: MIT
Description: pyrlp
        =====
        
        |Build Status| |Coverage Status| |PyPI version|
        
        A Python implementation of Recursive Length Prefix encoding (RLP). You
        can find the specification of the standard in the `Ethereum
        wiki <https://github.com/ethereum/wiki/wiki/RLP>`__ and the
        documentation of this package on
        `readthedocs <http://pyrlp.readthedocs.org/en/latest/>`__.
        
        Release setup
        ~~~~~~~~~~~~~
        
        For Debian-like systems:
        
        ::
        
           apt install pandoc
        
        To release a new version:
        
        .. code:: sh
        
           make release bump=$$VERSION_PART_TO_BUMP$$
        
        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, specify which part to bump, like
        ``make release bump=minor`` or ``make release bump=devnum``.
        
        If you are in a beta version, ``make release bump=stage`` will switch to
        a stable.
        
        To issue an unstable version when the current version is stable, specify
        the new version explicitly, like
        ``make release bump="--new-version 4.0.0-alpha.1 devnum"``
        
        .. |Build Status| image:: https://travis-ci.org/ethereum/pyrlp.svg?branch=develop
           :target: https://travis-ci.org/ethereum/pyrlp
        .. |Coverage Status| image:: https://coveralls.io/repos/ethereum/pyrlp/badge.svg
           :target: https://coveralls.io/r/ethereum/pyrlp
        .. |PyPI version| image:: https://badge.fury.io/py/rlp.svg
           :target: http://badge.fury.io/py/rlp
Keywords: rlp ethereum
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: Implementation :: PyPy
Provides-Extra: test
Provides-Extra: lint
Provides-Extra: doc
Provides-Extra: dev
Provides-Extra: rust-backend
