From 05e5b1f426a89624a07fbb809a9d693c3706fb80 Mon Sep 17 00:00:00 2001 From: gen2brain Date: Sat, 6 Apr 2013 11:12:38 +0200 Subject: [PATCH] add verbose/debug option --- src/m64py/opts.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/m64py/opts.py diff --git a/src/m64py/opts.py b/src/m64py/opts.py new file mode 100644 index 0000000..0ccfa47 --- /dev/null +++ b/src/m64py/opts.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +# Author: Milan Nikolic +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +from optparse import OptionParser + +from m64py.core.defs import FRONTEND_VERSION + +usage = 'usage: %prog ' +parser = OptionParser(usage=usage, version="M64Py Version %s" % FRONTEND_VERSION) +parser.add_option("-v", "--verbose", action="store_true", dest="verbose") +opts, args = parser.parse_args() + +VERBOSE = opts.verbose