view setup.py @ 18:c49d93044981

added sequence template
author egj@socialplanning.org
date Mon, 04 Jan 2010 04:52:16 +0000
parents 58cd02972b74
children 4d1911743e82
line wrap: on
line source

from setuptools import setup, find_packages
import sys, os

version = '0.2.4'

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://k0s.org/hg/montage',
      license='GPL',
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
      include_package_data=True,
      zip_safe=False,
      install_requires=[
          # -*- Extra requirements: -*-
        'decoupage',
        'cropresize'
      ],
      entry_points="""
      # -*- Entry points: -*-
      [decoupage.formatters]
      images = montage.formatters:Images
      """,
      )