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