Mercurial > hg > cropresize
comparison 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 |
comparison
equal
deleted
inserted
replaced
1:0a2302b6377b | 2:0676435d1186 |
---|---|
1 from setuptools import setup, find_packages | 1 from setuptools import setup, find_packages |
2 import sys, os | 2 import sys, os |
3 | 3 |
4 version = '0.1.2' | 4 try: |
5 description = file('README.txt').read() | |
6 except: | |
7 description = '' | |
8 | |
9 version = '0.1.3' | |
5 | 10 |
6 setup(name='cropresize', | 11 setup(name='cropresize', |
7 version=version, | 12 version=version, |
8 description="crop and resize an image without doing the math yourself", | 13 description="crop and resize an image without doing the math yourself", |
9 long_description="""\ | 14 long_description=description, |
10 """, | |
11 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | 15 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers |
12 keywords='image', | 16 keywords='image', |
13 author='Jeff Hammel', | 17 author='Jeff Hammel', |
14 author_email='k0scist@gmail.com', | 18 author_email='k0scist@gmail.com', |
15 url='http://pypi.python.org/pypi/cropresize', | 19 url='http://pypi.python.org/pypi/cropresize', |