test_cmd.py
author Alexander Solovyov <piranha@piranha.org.ua>
Sun, 11 Oct 2009 11:53:36 +0300
changeset 95 5d92ba281fe8
parent 91 a0f2747f4a3d
permissions -rwxr-xr-x
switch to setuptools (to distribute actually)

#!/usr/bin/env python

import opster

config_opts=[('c', 'config', 'webshops.ini', 'config file to use')]

@opster.command(config_opts)
def initdb(config):
    """Initialize database"""
    pass

@opster.command(config_opts)
def runserver(listen=('l', 'localhost', 'ip to listen on'),
              port=('p', 5000, 'port to listen on'),
              **opts):
    """Run development server"""
    print locals()

if __name__ == '__main__':
    opster.dispatch()