Mercurial > hg > buttercup
view setup.py @ 9:fe197282c615
fix ReST typo
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Mon, 08 Nov 2010 07:57:13 -0800 |
parents | 9a37a94fed68 |
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 """, )