Mercurial > hg > MakeItSo
view setup.py @ 34:46c2d0a7335a
continued refactor to have template classes
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sat, 01 Jan 2011 21:21:53 -0800 |
parents | 1549be7f0fcb |
children | 6e08cca7d656 |
line wrap: on
line source
from setuptools import setup, find_packages import sys, os 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' ], entry_points=""" # -*- Entry points: -*- [console_scripts] makeitso = makeitso.makeitso:main """, )