Mercurial > hg > montage
comparison setup.py @ 0:b7348ffe5b46
initial import of montage
| author | k0s <k0scist@gmail.com> |
|---|---|
| date | Mon, 07 Sep 2009 15:38:38 -0400 |
| parents | |
| children | 4b8aa9b0a45b |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:b7348ffe5b46 |
|---|---|
| 1 from setuptools import setup, find_packages | |
| 2 import sys, os | |
| 3 | |
| 4 version = '0.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', | |
| 15 url='http://explosivedecompression.net', | |
| 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', | |
| 23 'PIL' | |
| 24 ], | |
| 25 dependency_links=[ | |
| 26 "http://dist.repoze.org/PIL-1.1.6.tar.gz", | |
| 27 ], | |
| 28 entry_points=""" | |
| 29 # -*- Entry points: -*- | |
| 30 [decoupage.formatters] | |
| 31 montage = montage.formatters:Montage | |
| 32 """, | |
| 33 ) |
