Metadata-Version: 2.0
Name: basic-argparse
Version: 1.0
Summary: A helper function for setting up an argparse parser.
Home-page: UNKNOWN
Author: Matthew Darling
Author-email: matthewjdarling@gmail.com
License: http://opensource.org/licenses/MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering

﻿Provides some common setup actions for argparse. Import and be happy.

Specifically: init_parser() sets up help, version, and docstring options for
a program. Help and version are easy to get with argparse normally; printing
your docstring is the interesting part. It returns a parser with these basic
options configured. After that, you'll want to your application-specific
customizations.

print_and_exit() is an argparse action for printing an arbitrary string -
specifically, in this case, a program's docstring.

﻿========
Versions
========

* Version 1.0: Extracted from UNT_to_IPA.py

