Metadata-Version: 1.1
Name: OpScripts
Version: 1.4.0
Summary: Python libraries to assist with writing Linux Ops scripts.

Home-page: https://github.com/ClockworkNet/OpScripts
Author: Timid Robot Zehta
Author-email: tim@clockwork.com
License: MIT
Download-URL: https://github.com/ClockworkNet/OpScripts/releases
Description: OpScripts
        =========
        
        Python libraries to assist with writing Linux Ops scripts.
        
        
        Python Version Target
        =====================
        
        This library currently targets Python version 2.6.
        
        It has been tested with the following version of Python:
        
        - 2.6.5
        - 2.7.3, 2.7.6
        - 3.4.3
        
        
        API Versioning
        ==============
        
        Each module is versioned so that they can undergo significant changes without
        impacting the function and stability of the scripts that use them.
        
        For example::
        
            from opscripts.config import v4 as ops_config
            from opscripts.logging import v2 as ops_logging
            from opscripts.utils import v4 as ops_utils
        
        For a more in-depth examples, see the:
        
        - `<script_template.py>`_
        - `<example_notify_email.py>`_
        - `<example_yaml.py>`_
        
        
        Dependencies
        ============
        
        - ``opscripts.config``
        
          - `ConfigArgParse`_
        
        - ``opscripts.yaml``
        
          - `PyYAML`_
          - `ordereddict`_ (only required by Python 2.6)
        
        .. _`ConfigArgParse`: https://github.com/bw2/ConfigArgParse
        .. _`PyYAML`: http://pyyaml.org/wiki/PyYAML
        .. _`ordereddict`: https://pypi.python.org/pypi/ordereddict/1.1
        
        
        License
        =======
        
        - `<LICENSE>`_ (`MIT License`_)
        
        .. _`MIT License`: http://www.opensource.org/licenses/MIT
        
Keywords: CLI,DevOps,Ops,sysadmin,Systems administration
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Systems Administration
