Mercurial > hg > ltpdarepo
diff src/setup.py @ 0:c812c3020b63
Initial import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Thu, 09 Jun 2011 13:16:24 +0200 |
parents | |
children | 0f59922d36d2 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/setup.py Thu Jun 09 13:16:24 2011 +0200 @@ -0,0 +1,9 @@ +from setuptools import setup + +setup( + name='ltpdarepo', + version='0.1dev', + entry_points={'console_scripts': [ 'serve = ltpdarepo:main', + 'admin = ltpdarepo.admin:main', + 'test = ltpdarepo.tests:main']} +)