Mercurial > hg > montage
view setup.py @ 1:c5d30bfd032e
remove utils, this now lives in cropresize: http://k0s.org/hg/cropresize/
author | k0s <k0scist@gmail.com> |
---|---|
date | Tue, 15 Dec 2009 21:04:17 -0500 |
parents | b7348ffe5b46 |
children | 4b8aa9b0a45b |
line wrap: on
line source
from setuptools import setup, find_packages import sys, os version = '0.0' 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] montage = montage.formatters:Montage """, )