Mercurial > hg > buttercup
view setup.py @ 5:9a37a94fed68
merging, the fun
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Wed, 28 Jul 2010 20:40:39 -0700 |
parents | 1fa9ca23d696 f207357d7ca9 |
children | d51923b276ef |
line wrap: on
line source
from setuptools import find_packages, setup try: description = file("README.txt").read() except: description = '' version='0.0' setup(name='buttercup', version=version, description="paste template for creating instances of the buttercup flower website pattern", long_description=description, author='Jeff Hammel', author_email='k0scist@gmail.com', url='http://k0s.org', keywords='', license="GPL", 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 """, )