view setup.py @ 2:d5c80480b967

adding script to checkout source packages; should make this more unified in the future
author k0s <k0scist@gmail.com>
date Tue, 02 Mar 2010 15:13:57 -0500
parents 9661071dac87
children f207357d7ca9 1fa9ca23d696
line wrap: on
line source

from setuptools import find_packages, setup

version='0.0'

setup(name='buttercup',
      version=version,
      description="paste template for creating instances of the buttercup flower website pattern",
      author='Jeff Hammel',
      author_email='k0scist@gmail.com',
      url='http://k0s.org',
      keywords='trac plugin',
      license="",
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests*']),
      include_package_data=True,
      install_requires = [ 'PasteScript' ],
      zip_safe=False,
      entry_points = """
      [paste.paster_create_template]
      buttercup = buttercup:buttercup
      """,
      )