Mercurial > hg > MakeItSo
view setup.py @ 64:c20277dbf8fa
closer to substitution
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 06 Jan 2011 18:04:58 -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 """, )