view src/setup.py @ 134:5757ae81d57e

Make schema version an integer. This is to make version numbers comparison easier and to avoid any confusion of the database schema version with the software or toolbox release.
author Daniele Nicolodi <daniele@grinta.net>
date Fri, 14 Oct 2011 21:59:42 +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']}
)