From 60cae8608f9e3f3fa46e4c93de4fdd0281f47264 Mon Sep 17 00:00:00 2001 From: David Warde-Farley Date: Sun, 17 May 2015 19:28:09 -0400 Subject: [PATCH] Prep for PyPI. --- README.rst | 2 +- setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 0cbaf67..93fdc06 100644 --- a/README.rst +++ b/README.rst @@ -19,7 +19,7 @@ compatible. Also includes picklable, Python {2, 3}-compatible implementations of some related utilities, including some functions from the Toolz_ library, in ``picklable_itertools.extras``. -.. _PyToolz: http://toolz.readthedocs.org/en/latest/ +.. _Toolz: http://toolz.readthedocs.org/en/latest/ Why? ---- diff --git a/setup.py b/setup.py index 51c0b7b..2e48ece 100644 --- a/setup.py +++ b/setup.py @@ -9,8 +9,8 @@ setup( name='picklable-itertools', - version='0.0.1', # PEP 440 compliant - description='itertools. But picklable.', + version='0.1.0', # PEP 440 compliant + description='itertools. But picklable. Even on Python 2.', long_description=LONG_DESCRIPTION, url='https://github.com/dwf/picklable_itertools', author='David Warde-Farley', @@ -31,4 +31,4 @@ packages=find_packages(exclude=['tests']), install_requires=['six'], zip_safe=True - ) +)