Mercurial > hg > ltpdarepo
annotate src/setup.py @ 17:b63f74313bab
Add an index for 'submitted' column in 'objmeta' table.
To speed up activity view, add an index for 'submitted' column in
'objmeta' table during 2.5 to 2.6 database schema upgrade step.
author | Daniele Nicolodi <daniele@grinta.net> |
---|---|
date | Mon, 27 Jun 2011 14:07:08 +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 ) |