Mercurial > hg > MakeItSo
view setup.py @ 140:3046e15c3dd7
fix up sectioning
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 21 Feb 2012 21:06:11 -0800 |
parents | 169e02e190ef |
children | 18ef2d7c5b93 |
line wrap: on
line source
import os from setuptools import setup, find_packages try: here = os.path.dirname(os.path.abspath(__file__)) description = file(os.path.join(here, 'README.txt')).read() except IOError: description = '' version = '0.2.5' setup(name='MakeItSo', version=version, description='filesystem template interpreter', long_description=description, classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='templates', 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 >= 0.5.1', 'webob', ], entry_points=""" # -*- Entry points: -*- [console_scripts] makeitso = makeitso.makeitso:main make-python-package = makeitso.python:main [makeitso.templates] python-package = makeitso.python:PythonPackageTemplate python-module = makeitso.python:PythonModuleTemplate """, )