aboutsummaryrefslogtreecommitdiff
path: root/voctocore/lib/args.py
blob: b7575ff5f3dfc469afbca74c9a0c0bad1d9a84d7 (plain)
  1. #!/usr/bin/python3
  2. import argparse
  3. __all__ = ['Args']
  4. parser = argparse.ArgumentParser(description='Voctocore')
  5. parser.add_argument('-v', '--verbose', action='count',
  6. help="Also print INFO and DEBUG messages.")
  7. parser.add_argument('-c', '--color', action='store', choices=['auto', 'always', 'never'], default='auto',
  8. help="Control the use of colors in the Log-Output")
  9. parser.add_argument('-i', '--ini-file', action='store',
  10. help="Load a custom config.ini-File")
  11. Args = parser.parse_args()