Metadata-Version: 1.1
Name: pyjob
Version: 0.1.2
Summary: Job Management Controller
Home-page: https://github.com/fsimkovic/pyjob
Author: Felix Simkovic
Author-email: felixsimkovic@me.com
License: MIT License
Description: 
        *****
        PyJob
        *****
        
        **Python-controlled job execution across multiple platforms**
        
        .. image:: https://img.shields.io/pypi/v/pyjob.svg
           :target: https://pypi.python.org/pypi/pyjob
           :alt: PyPi Package
        
        .. image:: https://img.shields.io/pypi/pyversions/pyjob.svg
           :target: https://pypi.python.org/pypi/pyjob
           :alt: Python Versions
        
        .. image:: https://travis-ci.org/fsimkovic/pyjob.svg?branch=master
           :target: https://travis-ci.org/fsimkovic/pyjob
           :alt: Travis Build
        
        
        Installation
        ++++++++++++
        
        .. code-block:: bash
        
           $> git clone https://github.com/fsimkovic/pyjob.git
           $> cd pyjob
           $> python setup install
        
        
        Examples
        ++++++++
        
        1. To run a script called 'run.sh' on a local machine
        
        .. code-block:: python 
        
           >>> from pyjob import Job
           >>> j = Job('local')
           >>> j.submit('run.sh', nproc=1)
           >>> j.wait()
        
        
        2. To run a script called 'run.sh' on a SGE management platform
        
        .. code-block:: python
           
           >>> from pyjob import Job 
           >>> j = Job('sge')
           >>> j.submit('run.sh')
           >>> j.wait()
        
        
        3. To run a script called 'run.sh' on a LSF management platform
        
        .. code-block:: python
        
           >>> from pyjob import Job 
           >>> j = Job('lsf')
           >>> j.submit('run.sh')
           >>> j.wait()
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
