view setup.py @ 28:2df31d088583

weird version bump i dont understand why i have to do
author Jeff Hammel <jhammel@mozilla.com>
date Sun, 30 Oct 2011 14:47:09 -0700
parents e5336ec2ee02
children b61fe6b0ebe1
line wrap: on
line source

import os
from setuptools import setup, find_packages

version = '0.3.3'

try:
    description = file(os.path.join(os.path.dirname(__file__), 'README.txt')).read()
except:
    description = ''

setup(name='montage',
      version=version,
      description="photogallery using decoupage",
      long_description=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 >= 0.8',
        'cropresize'
      ],
      entry_points="""
      # -*- Entry points: -*-
      [decoupage.formatters]
      images = montage.formatters:Images
      """,
      )