Metadata-Version: 1.0
Name: EasyProcess
Version: 0.0.5
Summary: Easy to use python subprocess interface.
Home-page: https://github.com/ponty/easyprocess
Author: ponty
Author-email: UNKNOWN
License: BSD
Description: EasyProcess is an easy to use python subprocess interface.
        
        home: https://github.com/ponty/EasyProcess
        
        documentation: http://ponty.github.com/EasyProcess
        
        Advantages:
         - easy interface
         - command can be list or string
         - logging
        
        Basic usage
        ============
        
            >>> from easyprocess import EasyProcess
            >>> EasyProcess('echo hello').call().stdout
            'hello'
        
        
        Installation
        ============
        
        General
        --------
        
         * install setuptools_ or pip_
         * install the program:
        
        if you have setuptools_ installed::
        
            # as root
            easy_install EasyProcess
        
        if you have pip_ installed::
        
            # as root
            pip install EasyProcess
        
        Ubuntu
        ----------
        ::
        
            sudo apt-get install python-setuptools
            sudo easy_install EasyProcess
        
        Uninstall
        ----------
        ::
        
            # as root
            pip uninstall EasyProcess
        
        
        .. _setuptools: http://peak.telecommunity.com/DevCenter/EasyInstall
        .. _pip: http://pip.openplans.org/
        
        
Keywords: subprocess interface
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
