Metadata-Version: 1.1
Name: termtool
Version: 1.0
Summary: Declarative terminal tool programming
Home-page: https://github.com/markpasc/termtool
Author: Mark Paschal
Author-email: markpasc@markpasc.org
License: UNKNOWN
Description: 
        `termtool` helps you write subcommand-based command line tools in Python. It collects several Python libraries into a declarative syntax:
        
        * :mod:`argparse`, the argument parsing module with subcommand support provided in the standard library in Python 2.7 and later.
        * `prettytable <http://code.google.com/p/python-progressbar/>`_, an easy module for building tables of information.
        * `progressbar <http://code.google.com/p/python-progressbar/>`_, a handy module for displaying progress bars.
        * :mod:`logging`, the simple built-in module for logging messages.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 2.6
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Requires: argparse
Requires: PrettyTable
Requires: progressbar
