Mercurial > hg > montage
annotate setup.py @ 33:87ce035dd4a0
missing tag
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 30 Mar 2014 14:19:15 -0700 |
parents | d98c9e7415c3 |
children | 2ea5ec121763 |
rev | line source |
---|---|
24 | 1 import os |
0 | 2 from setuptools import setup, find_packages |
24 | 3 |
31 | 4 version = '0.3.6' |
0 | 5 |
24 | 6 try: |
7 description = file(os.path.join(os.path.dirname(__file__), 'README.txt')).read() | |
8 except: | |
9 description = '' | |
0 | 10 |
11 setup(name='montage', | |
12 version=version, | |
13 description="photogallery using decoupage", | |
24 | 14 long_description=description, |
0 | 15 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers |
16 keywords='photo gallery decoupage', | |
17 author='Jeff Hammel', | |
18 author_email='k0scist@gmail.com', | |
7 | 19 url='http://k0s.org/hg/montage', |
0 | 20 license='GPL', |
21 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | |
22 include_package_data=True, | |
23 zip_safe=False, | |
24 install_requires=[ | |
25 # -*- Extra requirements: -*- | |
26
ee74cf1e444b
* update templates to use head.html
Jeff Hammel <jhammel@mozilla.com>
parents:
25
diff
changeset
|
26 'decoupage >= 0.8', |
8
93af41dcff3a
now creates thumbnails using cropresize package
k0s <k0scist@gmail.com>
parents:
7
diff
changeset
|
27 'cropresize' |
0 | 28 ], |
29 entry_points=""" | |
30 # -*- Entry points: -*- | |
31 [decoupage.formatters] | |
2 | 32 images = montage.formatters:Images |
0 | 33 """, |
34 ) |