Mercurial > hg > MakeItSo
view setup.py @ 96:cc17537254d2
add an install script template
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 11 Jan 2011 09:58:10 -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 """, )