view src/setup.py @ 1:2b7f9772585a

Add buildout section to create WSGI app declaration.
author Daniele Nicolodi <daniele@grinta.net>
date Mon, 27 Jun 2011 16:28:23 +0200
parents c812c3020b63
children 0f59922d36d2
line wrap: on
line source

from setuptools import setup

setup(
    name='ltpdarepo',
    version='0.1dev',
    entry_points={'console_scripts': [ 'serve = ltpdarepo:main',
                                       'admin = ltpdarepo.admin:main',
                                       'test = ltpdarepo.tests:main']}
)