view src/setup.py @ 124:bb2d213cdd7e

Minor fix to database structure dump function.
author Daniele Nicolodi <daniele@grinta.net>
date Wed, 12 Oct 2011 20:26:18 +0200
parents 10119a324d4d
children e55537dfbe2b
line wrap: on
line source

from setuptools import setup

VERSION = '0.3dev'

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