Metadata-Version: 1.1
Name: OpScripts
Version: 1.0.2
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
        
        
        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 v1 as ops_config
            from opscripts.logging import v1 as ops_logging
            from opscripts.utils import v1 as ops_utils
            from opscripts.yaml import v1 as ops_yaml
        
        For a more in-depth example, see the `<script_template.py>`_.
        
        
        Dependencies
        ============
        
        - ``opscripts.config``
        
          - `ConfigArgParse`_
        
        - ``opscripts.yaml``
        
          - `PyYAML`_
        
        .. _`ConfigArgParse`: https://github.com/bw2/ConfigArgParse
        .. _`PyYAML`: http://pyyaml.org/wiki/PyYAML
        
        
        License
        =======
        
        - `<LICENSE>`_ (`MIT License`_)
        
        .. _`MIT License`: http://www.opensource.org/licenses/MIT
        
Keywords: CLI,DevOps,Ops,sysadmin,Systems administration
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: Implementation :: CPython
