Metadata-Version: 2.1
Name: rcsb.workflow
Version: 0.43
Summary: RCSB Python data processing and ETL/ELT workflow entry points
Home-page: https://github.com/rcsb/py-rcsb_workflow
Author: John Westbrook
Author-email: john.westbrook@rcsb.org
License: Apache 2.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: OpenEye-toolkits>=2020.2.2
Requires-Dist: rcsb.utils.chem>=0.75
Requires-Dist: rcsb.utils.seq>=0.63
Requires-Dist: rcsb.utils.targets>=0.57
Requires-Dist: rcsb.utils.seqalign>=0.24
Requires-Dist: rcsb.exdb>=0.87
Requires-Dist: rcsb.utils.io>=1.20
Provides-Extra: dev
Requires-Dist: check-manifest; extra == "dev"
Provides-Extra: test
Requires-Dist: coverage; extra == "test"

# py-rcsb_workflow

[![Build Status](https://dev.azure.com/rcsb/RCSB%20PDB%20Python%20Projects/_apis/build/status/rcsb.py-rcsb_workflow?branchName=master)](https://dev.azure.com/rcsb/RCSB%20PDB%20Python%20Projects/_build/latest?definitionId=21&branchName=master)

## Introduction

RCSB Python workflow entry points for data processing and ETL/ELT operations.

### Installation

Download the library source software from the project repository:

```bash

git clone  --recurse-submodules https://github.com/rcsb/py-rcsb_workflow.git

# or to make sure the submodules are updated --
git submodule update --recursive --init
git submodule update --recursive --remote

```

Optionally, run test suite (Python versions 3.8) using
[setuptools](https://setuptools.readthedocs.io/en/latest/) or
[tox](http://tox.readthedocs.io/en/latest/example/platform.html):

```bash

  pip install -r requirements.txt
  python setup.py test

or simply run:

  tox
```

Installation is via the program [pip](https://pypi.python.org/pypi/pip).  To run tests
from the source tree, the package must be installed in editable mode (i.e. -e):

```bash
pip install -e .
```
