Mercurial > hg > montage
view setup.py @ 6:439a417c857e
give a real version
author | k0s <k0scist@gmail.com> |
---|---|
date | Fri, 25 Dec 2009 17:22:17 -0500 |
parents | 4b8aa9b0a45b |
children | 70ead14c7d43 |
line wrap: on
line source
from setuptools import setup, find_packages import sys, os version = '0.1' setup(name='montage', version=version, description="photogallery using decoupage", long_description="""\ """, classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='photo gallery decoupage', author='Jeff Hammel', author_email='k0scist@gmail.com', url='http://explosivedecompression.net', license='GPL', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=[ # -*- Extra requirements: -*- 'decoupage', # 'PIL' ], dependency_links=[ "http://dist.repoze.org/PIL-1.1.6.tar.gz", ], entry_points=""" # -*- Entry points: -*- [decoupage.formatters] images = montage.formatters:Images """, )