Mercurial > hg > ltpdarepo
annotate src/setup.py @ 18:4c08f51482a3
Add 2.6 to 2.7 database schema version upgrade.
Perform the repository database schema optimization as part of this
upgrade step. Errors during the schema upgrade of each repository are
reported but are not fatal to the upgrade step.
* * *
Bump schema version.
author | Daniele Nicolodi <daniele@grinta.net> |
---|---|
date | Mon, 27 Jun 2011 14:08:38 +0200 |
parents | 0f59922d36d2 |
children | cd44da6ece8d |
rev | line source |
---|---|
0 | 1 from setuptools import setup |
2 | |
3 setup( | |
4 name='ltpdarepo', | |
5 version='0.1dev', | |
5
0f59922d36d2
Rename 'serve' commant to 'run'.
Daniele Nicolodi <nicolodi@science.unitn.it>
parents:
0
diff
changeset
|
6 entry_points={'console_scripts': [ 'run = ltpdarepo:main', |
0 | 7 'admin = ltpdarepo.admin:main', |
8 'test = ltpdarepo.tests:main']} | |
9 ) |