Metadata-Version: 1.1
Name: pyjob
Version: 0.1.5
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**
        
        [![PyPi package](https://img.shields.io/pypi/v/pyjob.svg)](https://pypi.python.org/pypi/pyjob)
        [![Build Status](https://travis-ci.org/fsimkovic/pyjob.svg)](https://travis-ci.org/fsimkovic/pyjob)
        [![Python version](https://img.shields.io/pypi/pyversions/pyjob.svg)](https://pypi.python.org/pypi/pyjob)
        
        ## Installation
        
        ### Latest official release
        ```bash
        $ pip install pyjob
        ```
        
        ### Source code
        ```bash
        $ git clone https://github.com/fsimkovic/pyjob.git
        $ cd pyjob
        $ python setup install
        ```
        
        ## Examples
        
        ### Local machine
        
        ```python
        >>> from pyjob import Job
        >>> j = Job('local')
        >>> j.submit('run.sh', nproc=1)
        >>> j.wait()
        ```
        
        ### SGE management platform
        
        ```python 
        >>> from pyjob import Job 
        >>> j = Job('sge')
        >>> j.submit('run.sh')
        >>> j.wait()
        ```
        
        ### LSF management platform
        
        ```python
        >>> from pyjob import Job 
        >>> j = Job('lsf')
        >>> j.submit('run.sh')
        >>> j.wait()
        ```
        
        ### PBS/TORQUE management platform
        
        ```python
        >>> from pyjob import Job 
        >>> j = Job('pbs')
        >>> 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
