view src/setup.py @ 173:e2a9b0c3d83e

Expose the database structure dump utility through the admin interface.
author Daniele Nicolodi <daniele@grinta.net>
date Sun, 06 Nov 2011 18:15:10 +0100
parents 85b2bc3c7e04
children a6f2c9eae217
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',]}
)