Mercurial > hg > montage
annotate setup.py @ 20:c2d59b93aa43
dont display hr if width not specified
| author | k0s <k0scist@gmail.com> |
|---|---|
| date | Sat, 09 Jan 2010 17:02:49 -0500 |
| parents | 58cd02972b74 |
| children | 4d1911743e82 |
| rev | line source |
|---|---|
| 0 | 1 from setuptools import setup, find_packages |
| 2 import sys, os | |
| 3 | |
| 15 | 4 version = '0.2.4' |
| 0 | 5 |
| 6 setup(name='montage', | |
| 7 version=version, | |
| 8 description="photogallery using decoupage", | |
| 9 long_description="""\ | |
| 10 """, | |
| 11 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | |
| 12 keywords='photo gallery decoupage', | |
| 13 author='Jeff Hammel', | |
| 14 author_email='k0scist@gmail.com', | |
| 7 | 15 url='http://k0s.org/hg/montage', |
| 0 | 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 'decoupage', | |
|
8
93af41dcff3a
now creates thumbnails using cropresize package
k0s <k0scist@gmail.com>
parents:
7
diff
changeset
|
23 'cropresize' |
| 0 | 24 ], |
| 25 entry_points=""" | |
| 26 # -*- Entry points: -*- | |
| 27 [decoupage.formatters] | |
| 2 | 28 images = montage.formatters:Images |
| 0 | 29 """, |
| 30 ) |
