Mercurial > hg > ltpdarepo
view src/setup.py @ 25:04b93e15bb71
Rework command line administration tool.
Use 'argparse' module for command line parsing. Therefore add argparse
to installed eggs. Remove code duplication from admin.py and web
interface support classes.
author | Daniele Nicolodi <daniele@grinta.net> |
---|---|
date | Mon, 27 Jun 2011 16:16:07 +0200 |
parents | 0f59922d36d2 |
children | cd44da6ece8d |
line wrap: on
line source
from setuptools import setup setup( name='ltpdarepo', version='0.1dev', entry_points={'console_scripts': [ 'run = ltpdarepo:main', 'admin = ltpdarepo.admin:main', 'test = ltpdarepo.tests:main']} )