1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
#!/usr/bin/env python
#-----------------------------------------------------------------------------
# Copyright (c) 2013, The BiPy Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------
__author__ = "Daniel McDonald"
__copyright__ = "Copyright 2013, The pyqi project"
__credits__ = ["Daniel McDonald", "Greg Caporaso", "Doug Wendel",
"Jai Ram Rideout"]
__license__ = "BSD"
__version__ = "0.1.0-dev"
__maintainer__ = "Daniel McDonald"
__email__ = "mcdonadt@colorado.edu"
from pyqi.core.interfaces.optparse import (OptparseOption,
OptparseResult,
OptparseUsageExample)
from pyqi.core.interfaces.optparse.output_handler import write_string
from pyqi.core.command import make_parameter_collection_lookup_f
from pyqi.commands.make_command import CommandConstructor
param_lookup = make_parameter_collection_lookup_f(CommandConstructor)
usage_examples = [
OptparseUsageExample(ShortDesc="Basic Command",
LongDesc="Create a basic Command with appropriate attribution",
Ex='%prog -n example -a "some author" -c "Copyright 2013, The pyqi project" -e "foo@bar.com" -l BSD --command-version "0.1" --credits "someone else","and another person" -o example.py')
]
inputs = [
OptparseOption(Parameter=param_lookup('name'),
ShortName='n'),
OptparseOption(Parameter=param_lookup('email'),
ShortName='e'),
OptparseOption(Parameter=param_lookup('author'),
ShortName='a'),
OptparseOption(Parameter=param_lookup('license'),
ShortName='l'),
OptparseOption(Parameter=param_lookup('copyright'),
ShortName='c'),
OptparseOption(Parameter=param_lookup('test_code')),
OptparseOption(Parameter=param_lookup('command_version')),
OptparseOption(Parameter=param_lookup('credits')),
OptparseOption(Parameter=None,
InputType='new_filepath',
ShortName='o',
Name='output-fp',
Required=True,
Help='output filepath to store generated Python code')
]
outputs = [
OptparseResult(ResultKey='result',
OutputHandler=write_string,
OptionName='output-fp')
]
|