Mercurial > hg > ltpdarepo
annotate src/setup.py @ 5:0f59922d36d2
Rename 'serve' commant to 'run'.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 15 Jun 2011 11:07:20 +0200 |
parents | c812c3020b63 |
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 ) |