view src/setup.py @ 165:4481820ee0f5

Fix bug introduced in last commit.
author Daniele Nicolodi <daniele@grinta.net>
date Fri, 04 Nov 2011 12:57:06 +0100
parents 85b2bc3c7e04
children e2a9b0c3d83e
line wrap: on
line source

from setuptools import setup

VERSION = '0.4dev'

setup(
    name='ltpdarepo',
    version=VERSION,
    entry_points={'console_scripts': ['run = ltpdarepo:main',
                                      'admin = ltpdarepo.admin:main',
                                      'dump = ltpdarepo.tests.dump:main']}
)