Mercurial > hg > cropresize
comparison setup.py @ 0:0a54e5bd2875
initial import of cropresive from https://svn.openplans.org/svn/standalone/cropresize
author | k0s <k0scist@gmail.com> |
---|---|
date | Thu, 29 Oct 2009 18:28:13 -0400 |
parents | |
children | 0a2302b6377b |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:0a54e5bd2875 |
---|---|
1 from setuptools import setup, find_packages | |
2 import sys, os | |
3 | |
4 version = '0.1.1' | |
5 | |
6 setup(name='cropresize', | |
7 version=version, | |
8 description="crop and resize an image without doing the math yourself", | |
9 long_description="""\ | |
10 """, | |
11 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | |
12 keywords='image', | |
13 author='Jeff Hammel', | |
14 author_email='jhammel@openplans.org', | |
15 url='http://pypi.python.org/pypi/cropresize', | |
16 license='GPL', | |
17 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | |
18 include_package_data=True, | |
19 zip_safe=False, | |
20 install_requires=[ | |
21 # -*- Extra requirements: -*- | |
22 'PIL', | |
23 ], | |
24 dependency_links=[ | |
25 "http://dist.repoze.org/PIL-1.1.6.tar.gz", | |
26 ], | |
27 entry_points=""" | |
28 # -*- Entry points: -*- | |
29 [console_scripts] | |
30 crop-resize = cropresize:main | |
31 """, | |
32 ) |