Metadata-Version: 1.1
Name: pipettor
Version: 0.1.2
Summary: pipettor - robust, easy to use Unix process pipelines
Home-page: https://github.com/diekhans/pipettor
Author: Mark Diekhans
Author-email: markd@soe.ucsc.edu
License: MIT
Description: ===============================
        pipettor
        ===============================
        
        pipettor - robust, easy to use Python package for running Unix process pipelines
        
        Features
        --------
        
        * Command pipelines are simply specified as a sequence of commands, with each
          command represented as a sequence of arguments.
        * Failures of any process in the pipeline result in an exception, with stderr
          include in the exception.
        * Pipeline stdin/stdout/stderr can be passed through from parent process, set to a file, or
          read/written by the parent process.
        * Asynchronous reading and writing to and from the pipeline without risk of
          deadlock.
        * Pipeline may run asynchronously or block until completion.
        * Includes a file-like object for reading or writing a pipeline.
        * Free software: MIT license
        * Documentation: https://pipettor.readthedocs.org.
        
        
        
        
        
        History
        -------
        
        0.1.2 (2017-06-11)
        ---------------------
        
        * First public release on PyPI.
        
Keywords: process,pipe
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Operating System :: POSIX
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Topic :: Software Development :: Libraries :: Python Modules
