Mercurial > hg > montage
annotate setup.py @ 9:33349e5178b3
fix up templates
author | k0s <k0scist@gmail.com> |
---|---|
date | Fri, 25 Dec 2009 18:56:23 -0500 |
parents | 93af41dcff3a |
children | 73d18f0cf8bb |
rev | line source |
---|---|
8
93af41dcff3a
now creates thumbnails using cropresize package
k0s <k0scist@gmail.com>
parents:
7
diff
changeset
|
1 from cropresize import crop_resize |
0 | 2 from setuptools import setup, find_packages |
3 import sys, os | |
4 | |
9 | 5 version = '0.2.1' |
0 | 6 |
7 setup(name='montage', | |
8 version=version, | |
9 description="photogallery using decoupage", | |
10 long_description="""\ | |
11 """, | |
12 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | |
13 keywords='photo gallery decoupage', | |
14 author='Jeff Hammel', | |
15 author_email='k0scist@gmail.com', | |
7 | 16 url='http://k0s.org/hg/montage', |
0 | 17 license='GPL', |
18 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | |
19 include_package_data=True, | |
20 zip_safe=False, | |
21 install_requires=[ | |
22 # -*- Extra requirements: -*- | |
23 'decoupage', | |
8
93af41dcff3a
now creates thumbnails using cropresize package
k0s <k0scist@gmail.com>
parents:
7
diff
changeset
|
24 'cropresize' |
0 | 25 ], |
26 entry_points=""" | |
27 # -*- Entry points: -*- | |
28 [decoupage.formatters] | |
2 | 29 images = montage.formatters:Images |
0 | 30 """, |
31 ) |