# HG changeset patch # User k0s # Date 1267825565 18000 # Node ID 0676435d11862b8b2b864b751402cec54fb44cb3 # Parent 0a2302b6377bb7509d05a38e00925aea66532790 include README file; bump version diff -r 0a2302b6377b -r 0676435d1186 README.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/README.txt Fri Mar 05 16:46:05 2010 -0500 @@ -0,0 +1,14 @@ +cropresize +========== + +cropresize uses PIL to crop and resize an image as appropriate for web +presentation. cropresize is a convenience package that allows image +resizing without aspect ratio distortion. + +API +--- + +Command Line +------------ + +``crop-resize`` diff -r 0a2302b6377b -r 0676435d1186 setup.py --- 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',