Mercurial > hg > cropresize
changeset 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 |
files | README.txt setup.py |
diffstat | 2 files changed, 21 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- /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``
--- 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',