Mercurial > hg > hgpaste
view setup.py @ 3:ee67528d75e7
add paste entry point
author | Robert Marianski <rob@marianski.com> |
---|---|
date | Sun, 04 Oct 2009 15:31:22 -0400 |
parents | 3c88863abf08 |
children | 041ba864496f |
line wrap: on
line source
from setuptools import setup, find_packages import sys, os version = '0.0' setup(name='hgpaste', version=version, description="serves a hg webdir with paste", long_description="""\ """, classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='paste hg', author='Jeff Hammel', author_email='k0scist@gmail.com', url='http://k0s.org', license='GPL', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=[ 'mercurial', ], entry_points=""" # -*- Entry points: -*- [paste.app_factory] main = hgpaste.factory:make_app """, )