Metadata-Version: 1.1
Name: unix
Version: 0.1
Summary: Manage Unix-like systems.
Home-page: UNKNOWN
Author: François Ménabé
Author-email: francois.menabe@gmail.com
License: MIT Licence
Download-URL: https://github.com/fmenabe/python-unix
Description: Package for managing Unix hosts
        ===============================
        
        This module aims to manage Unix-likes operating systems. It manage both local or
        remote host in the same way. Commands can be executed interactively or not, and
        the result is a list of three elements:
            * the status of the command (boolean based on return code)
            * the standard output (stdout)
            * the error output (stderr)
        For executed commands on localhost, the module used is ``subprocess`` and for
        remotes hosts, the module used is ``paramiko``.
        
        Code is available on Github (http://github.com/fmenabe/python-clg)
        
        Releases notes
        --------------
        0.1
        ~~~
            * Initial version.
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: System Administrators
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Operating System :: Unix
Classifier: Topic :: System :: Systems Administration
