Metadata-Version: 1.1
Name: hitchrunpy
Version: 0.1.1
Summary: Tools to run and interact with python code.
Home-page: https://github.com/hitchtest/hitchrunpy
Author: Colm O'Connor
Author-email: colm.oconnor.github@gmail.com
License: MIT
Description: HitchRunPy
        ==========
        
        Tools to run and interact with python code at arm's length,
        from other python code.
        
        Install
        -------
        
        .. code-block:: sh
        
          $ pip install hitchrunpy
        
        
        Example
        -------
        
        .. code-block:: python
        
        
              from hitchrunpy import ExamplePythonCode
              
              ExamplePythonCode((
                  'with open("examplefile", "w") as handle:'
                  '     handle.write("exampletext")'
              )).run(
                  '/path/to/working_directory', 
                  '/path/to/bin/python',
              )
        
              
        Features
        --------
        
        * Test variables for equality.
        * "Expect" exceptions and get detailed debugging info when the exception is not quite right.
        * Monitor what is printed to stdout.
        
Keywords: yaml
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Text Processing :: Markup
Classifier: Topic :: Software Development :: Libraries
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
