Mercurial > hg > ltpdarepo
annotate src/setup.py @ 44:b9c38c1704bd
Fix 2.6 to 2.7 upgrade step: do not try to change storage for views.
author | Daniele Nicolodi <daniele@grinta.net> |
---|---|
date | Tue, 26 Jul 2011 00:26:49 +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 ) |