PyPi compatilibity

This commit is contained in:
Kenneth Reitz
2010-05-16 15:20:29 -04:00
parent adf90e2cef
commit 5e7dd87717
4 changed files with 8 additions and 2 deletions
+4
View File
@@ -1,6 +1,10 @@
History
=======
0.1.1 (2010-05-16)
------------------
* PyPi Compatibility Changes
0.1.0 (2010-05-16)
------------------
+2
View File
@@ -1,3 +1,5 @@
HISTORY.rst
README.rst
setup.py
gistapi/__init__.py
gistapi/gistapi.py
+1 -1
View File
@@ -35,7 +35,7 @@ try: import simplejson as json
except ImportError: import json
__author__ = 'Kenneth Reitz'
__version__ = ('0', '1', '0')
__version__ = ('0', '1', '1')
__license__ = 'MIT'
+1 -1
View File
@@ -15,7 +15,7 @@ if sys.argv[-1] == "publish":
sys.exit()
setup(name='gistapi',
version='0.1.0',
version='0.1.1',
description='Python wrapper for Gist API',
long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(),
author='Kenneth Reitz',