Mercurial > hg > montage
annotate setup.py @ 24:4d1911743e82
start doing documentation
| author | k0s <k0scist@gmail.com> |
|---|---|
| date | Tue, 19 Jan 2010 11:19:32 -0500 |
| parents | 58cd02972b74 |
| children | f3b6bf903499 |
| rev | line source |
|---|---|
| 24 | 1 import os |
| 0 | 2 from setuptools import setup, find_packages |
| 24 | 3 |
| 4 version = '0.3' | |
| 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 'decoupage', | |
|
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 ) |
