view src/setup.py @ 153:49ae14f1eaef

Explicitly depend on distribute.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Tue, 25 Oct 2011 23:00:17 +0200
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']}
)