Mercurial > hg > cropresize
diff setup.py @ 2:0676435d1186
include README file; bump version
author | k0s <k0scist@gmail.com> |
---|---|
date | Fri, 05 Mar 2010 16:46:05 -0500 |
parents | 0a2302b6377b |
children | 2be0070c6f95 |
line wrap: on
line diff
--- a/setup.py Fri Dec 25 17:44:59 2009 -0500 +++ b/setup.py Fri Mar 05 16:46:05 2010 -0500 @@ -1,13 +1,17 @@ from setuptools import setup, find_packages import sys, os -version = '0.1.2' +try: + description = file('README.txt').read() +except: + description = '' + +version = '0.1.3' setup(name='cropresize', version=version, description="crop and resize an image without doing the math yourself", - long_description="""\ -""", + long_description=description, classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='image', author='Jeff Hammel',