Mercurial > hg > MakeItSo
view setup.py @ 99:d9c6e26a42ff
fix up interactivity of API template a bit. still doesnt quite work
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 11 Jan 2011 11:53:02 -0800 |
parents | 363f6625d036 |
children | ad5fd3eb6674 |
line wrap: on
line source
from setuptools import setup, find_packages version = '0.0' setup(name='MakeItSo', version=version, description='filesystem template interpreter', long_description="""\ """, classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='', author='Jeff Hammel', author_email='jhammel@mozilla.com', url='http://k0s.org/', license='MPL', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=[ # -*- Extra requirements: -*- 'tempita', 'webob', ], entry_points=""" # -*- Entry points: -*- [console_scripts] makeitso = makeitso.makeitso:main """, )