Metadata-Version: 2.1
Name: lsf-runner
Version: 0.0.3
Summary: A package to run experiments on lsf or linux clusters.
Home-page: https://github.com/sebascuri/runner
Author: Sebastian Curi
Author-email: sebascuri@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: test
Requires-Dist: pytest (<5.1,>=5.0) ; extra == 'test'
Requires-Dist: flake8 (<3.8,>=3.7.8) ; extra == 'test'
Requires-Dist: pydocstyle (==4.0.0) ; extra == 'test'
Requires-Dist: pytest-cov (<3,>=2.7) ; extra == 'test'
Requires-Dist: mypy (>=0.740) ; extra == 'test'

# Runner

Runner is a package for running experiments, particular at a IBM LSF cluster. 
It provides a runner that can run locally on CPUs or GPUs, or on an IBM LSF cluster.

This package will change often as it is under development. 
## Installation  
```bash
pip install -U git+https://github.com/sebascuri/runner
```
Or clone and install 
```bash
git clone https://github.com/sebascuri/runner.git
cd runner 
pip install -e .[test]
```

