{ "info": { "author": "Jason Carver", "author_email": "ethcalibur+pip@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: PyPy" ], "description": "py-snappy\n=========\n\n|Join the chat at https://gitter.im/ethereum/py-snappy| |Build Status|\n|PyPI version| |Python versions| |Docs build|\n\nA pure python implementation of the Snappy compression algorithm\n\nRead more in the `documentation on\nReadTheDocs `__. `View the change\nlog `__.\n\nQuickstart\n----------\n\n.. code:: sh\n\n pip install py-snappy\n\nDeveloper Setup\n---------------\n\nIf you would like to hack on py-snappy, please check out the `Ethereum\nDevelopment Tactical\nManual `__\nfor information on how we do:\n\n- Testing\n- Pull Requests\n- Code Style\n- Documentation\n\nDevelopment Environment Setup\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nYou can set up your dev environment with:\n\n.. code:: sh\n\n git clone git@github.com:ethereum/py-snappy.git\n cd py-snappy\n virtualenv -p python3 venv\n . venv/bin/activate\n pip install -e .[dev]\n\nTesting Setup\n~~~~~~~~~~~~~\n\nDuring development, you might like to have tests run on every file save.\n\nShow flake8 errors on file change:\n\n.. code:: sh\n\n # Test flake8\n when-changed -v -s -r -1 py_snappy/ tests/ -c \"clear; flake8 py_snappy tests && echo 'flake8 success' || echo 'error'\"\n\nRun multi-process tests in one command, but without color:\n\n.. code:: sh\n\n # in the project root:\n pytest --numprocesses=4 --looponfail --maxfail=1\n # the same thing, succinctly:\n pytest -n 4 -f --maxfail=1\n\nRun in one thread, with color and desktop notifications:\n\n.. code:: sh\n\n cd venv\n ptw --onfail \"notify-send -t 5000 'Test failure \u26a0\u26a0\u26a0\u26a0\u26a0' 'python 3 test on py-snappy failed'\" ../tests ../py_snappy\n\nRelease setup\n~~~~~~~~~~~~~\n\nFor Debian-like systems:\n\n::\n\n apt install pandoc\n\nTo release a new version:\n\n.. code:: sh\n\n make release bump=$$VERSION_PART_TO_BUMP$$\n\nHow to bumpversion\n^^^^^^^^^^^^^^^^^^\n\nThe version format for this repo is ``{major}.{minor}.{patch}`` for\nstable, and ``{major}.{minor}.{patch}-{stage}.{devnum}`` for unstable\n(``stage`` can be alpha or beta).\n\nTo issue the next version in line, specify which part to bump, like\n``make release bump=minor`` or ``make release bump=devnum``. This is\ntypically done from the master branch, except when releasing a beta (in\nwhich case the beta is released from master, and the previous stable\nbranch is released from said branch). To include changes made with each\nrelease, update \"docs/releases.rst\" with the changes, and apply commit\ndirectly to master before release.\n\nIf you are in a beta version, ``make release bump=stage`` will switch to\na stable.\n\nTo issue an unstable version when the current version is stable, specify\nthe new version explicitly, like\n``make release bump=\"--new-version 4.0.0-alpha.1 devnum\"``\n\n.. |Join the chat at https://gitter.im/ethereum/py-snappy| image:: https://badges.gitter.im/ethereum/py-snappy.svg\n :target: https://gitter.im/ethereum/py-snappy?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge\n.. |Build Status| image:: https://circleci.com/gh/ethereum/py-snappy.svg?style=shield\n :target: https://circleci.com/gh/ethereum/py-snappy\n.. |PyPI version| image:: https://badge.fury.io/py/py-snappy.svg\n :target: https://badge.fury.io/py/py-snappy\n.. |Python versions| image:: https://img.shields.io/pypi/pyversions/py-snappy.svg\n :target: https://pypi.python.org/pypi/py-snappy\n.. |Docs build| image:: https://readthedocs.org/projects/py-snappy/badge/?version=latest\n :target: http://py-snappy.readthedocs.io/en/latest/?badge=latest\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/ethereum/py-snappy", "keywords": "ethereum", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "py-snappy", "package_url": "https://pypi.org/project/py-snappy/", "platform": "", "project_url": "https://pypi.org/project/py-snappy/", "project_urls": { "Homepage": "https://github.com/ethereum/py-snappy" }, "release_url": "https://pypi.org/project/py-snappy/0.1.0a1/", "requires_dist": [ "bumpversion (<1,>=0.5.3); extra == 'dev'", "pytest-watch (<5,>=4.1.0); extra == 'dev'", "wheel; extra == 'dev'", "twine; extra == 'dev'", "ipython; extra == 'dev'", "pytest (>=3.6.0); extra == 'dev'", "pytest-xdist; extra == 'dev'", "tox (<3,>=2.9.1); extra == 'dev'", "hypothesis (==3.74.3); extra == 'dev'", "python-snappy (<1,>=0.5.3); extra == 'dev'", "flake8 (==3.4.1); extra == 'dev'", "black (==18.9b0); extra == 'dev'", "mypy (==0.630); extra == 'dev'", "Sphinx (<2,>=1.6.5); extra == 'dev'", "sphinx-rtd-theme (>=0.1.9); extra == 'dev'", "Sphinx (<2,>=1.6.5); extra == 'doc'", "sphinx-rtd-theme (>=0.1.9); extra == 'doc'", "flake8 (==3.4.1); extra == 'lint'", "black (==18.9b0); extra == 'lint'", "mypy (==0.630); extra == 'lint'", "pytest (>=3.6.0); extra == 'test'", "pytest-xdist; extra == 'test'", "tox (<3,>=2.9.1); extra == 'test'", "hypothesis (==3.74.3); extra == 'test'", "python-snappy (<1,>=0.5.3); extra == 'test'" ], "requires_python": ">=3.6, <4", "summary": "py-snappy: A pure python implementation of the Snappy compression algorithm", "version": "0.1.0a1" }, "last_serial": 4935191, "releases": { "0.1.0a1": [ { "comment_text": "", "digests": { "md5": "d9149468b2a9a70d12919275da1b6d8d", "sha256": "db94fa5ae96b740f886c0a3209fb8b02f51879f3b75cecefa21d838c745b9138" }, "downloads": -1, "filename": "py_snappy-0.1.0a1-py3-none-any.whl", "has_sig": false, "md5_digest": "d9149468b2a9a70d12919275da1b6d8d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6, <4", "size": 8193, "upload_time": "2019-03-13T15:41:35", "url": "https://files.pythonhosted.org/packages/3a/d7/bed3c54978eb956aea73ce1e25c9d88d945364115ecd3288b949032e2e5a/py_snappy-0.1.0a1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0c7f562478fb94eb2574aaba55b6a3ed", "sha256": "92e58cd07736f0ba109228b0db1fba2568ab40fc1b03bffb0580fdb535bdbcde" }, "downloads": -1, "filename": "py-snappy-0.1.0a1.tar.gz", "has_sig": false, "md5_digest": "0c7f562478fb94eb2574aaba55b6a3ed", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6, <4", "size": 7361, "upload_time": "2019-03-13T15:41:38", "url": "https://files.pythonhosted.org/packages/9a/6e/a3ed4065556c03e42923d713b06c27319b6fa5cb3d8730ce3fa0ab877e6f/py-snappy-0.1.0a1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d9149468b2a9a70d12919275da1b6d8d", "sha256": "db94fa5ae96b740f886c0a3209fb8b02f51879f3b75cecefa21d838c745b9138" }, "downloads": -1, "filename": "py_snappy-0.1.0a1-py3-none-any.whl", "has_sig": false, "md5_digest": "d9149468b2a9a70d12919275da1b6d8d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6, <4", "size": 8193, "upload_time": "2019-03-13T15:41:35", "url": "https://files.pythonhosted.org/packages/3a/d7/bed3c54978eb956aea73ce1e25c9d88d945364115ecd3288b949032e2e5a/py_snappy-0.1.0a1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0c7f562478fb94eb2574aaba55b6a3ed", "sha256": "92e58cd07736f0ba109228b0db1fba2568ab40fc1b03bffb0580fdb535bdbcde" }, "downloads": -1, "filename": "py-snappy-0.1.0a1.tar.gz", "has_sig": false, "md5_digest": "0c7f562478fb94eb2574aaba55b6a3ed", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6, <4", "size": 7361, "upload_time": "2019-03-13T15:41:38", "url": "https://files.pythonhosted.org/packages/9a/6e/a3ed4065556c03e42923d713b06c27319b6fa5cb3d8730ce3fa0ab877e6f/py-snappy-0.1.0a1.tar.gz" } ] }