Mercurial > hg > cropresize
comparison setup.py @ 1:0a2302b6377b
correct email
author | k0s <k0scist@gmail.com> |
---|---|
date | Fri, 25 Dec 2009 17:44:59 -0500 |
parents | 0a54e5bd2875 |
children | 0676435d1186 |
comparison
equal
deleted
inserted
replaced
0:0a54e5bd2875 | 1:0a2302b6377b |
---|---|
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.1' | 4 version = '0.1.2' |
5 | 5 |
6 setup(name='cropresize', | 6 setup(name='cropresize', |
7 version=version, | 7 version=version, |
8 description="crop and resize an image without doing the math yourself", | 8 description="crop and resize an image without doing the math yourself", |
9 long_description="""\ | 9 long_description="""\ |
10 """, | 10 """, |
11 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | 11 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers |
12 keywords='image', | 12 keywords='image', |
13 author='Jeff Hammel', | 13 author='Jeff Hammel', |
14 author_email='jhammel@openplans.org', | 14 author_email='k0scist@gmail.com', |
15 url='http://pypi.python.org/pypi/cropresize', | 15 url='http://pypi.python.org/pypi/cropresize', |
16 license='GPL', | 16 license='GPL', |
17 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | 17 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), |
18 include_package_data=True, | 18 include_package_data=True, |
19 zip_safe=False, | 19 zip_safe=False, |