Metadata-Version: 2.0
Name: subprocrunner
Version: 0.1.0
Summary: A python library of subprocess module wrapper.
Home-page: https://github.com/thombashi/subprocrunner
Author: Tsuyoshi Hombashi
Author-email: gogogo.vm@gmail.com
License: MIT License
Keywords: library,subprocess
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: DataProperty (>=0.8.1)
Requires-Dist: six

subprocrunner
=============

.. image:: https://img.shields.io/pypi/pyversions/subprocrunner.svg
   :target: https://pypi.python.org/pypi/subprocrunner
.. image:: https://travis-ci.org/thombashi/subprocrunner.svg?branch=master
    :target: https://travis-ci.org/thombashi/subprocrunner
.. image:: https://coveralls.io/repos/github/thombashi/subprocrunner/badge.svg?branch=master
    :target: https://coveralls.io/github/thombashi/subprocrunner?branch=master

Summary
-------

A python library of subprocess module wrapper.


Examples
========

.. code:: python

    from subprocrunner import SubprocessRunner

    runner = SubprocessRunner("echo test")
    print("return code: {:d}".format(runner.run()))
    print("stdout: {}".format(runner.stdout))

.. code::

    return code: 0
    stdout: test

Installation
============

::

    pip install subprocrunner


Dependencies
============

Python 2.7+ or 3.3+

- `DataPropery <https://github.com/thombashi/DataProperty>`__
- `six <https://pypi.python.org/pypi/six/>`__


Test dependencies
-----------------

- `pytest <http://pytest.org/latest/>`__
- `pytest-runner <https://pypi.python.org/pypi/pytest-runner>`__
- `tox <https://testrun.org/tox/latest/>`__


