view src/setup.py @ 146:7c5bd2a8bb3f

Fix database schema upgrade. Now most of the step can be run multiple times.
author Daniele Nicolodi <daniele@grinta.net>
date Fri, 21 Oct 2011 16:10:17 +0200
parents 347b29cb9332
children 85b2bc3c7e04
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']}
)