Metadata-Version: 2.1
Name: rcsb.utils.dictionary
Version: 1.18
Summary: RCSB Python Dictionary Utility Classes
Home-page: https://github.com/rcsb/py-rcsb_utils_dictionary
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.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: scipy
Requires-Dist: numpy
Requires-Dist: mmcif>=0.75
Requires-Dist: rcsb.utils.chemref>=0.79
Requires-Dist: rcsb.utils.citation>=0.16
Requires-Dist: rcsb.utils.config>=0.35
Requires-Dist: rcsb.utils.ec>=0.22
Requires-Dist: rcsb.utils.io>=1.21
Requires-Dist: rcsb.utils.multiproc>=0.18
Requires-Dist: rcsb.utils.repository>=0.28
Requires-Dist: rcsb.utils.seq>=0.63
Requires-Dist: rcsb.utils.struct>=0.37
Requires-Dist: rcsb.utils.targets>=0.56
Requires-Dist: rcsb.utils.taxonomy>=0.39
Requires-Dist: rcsb.utils.validation>=0.25
Requires-Dist: rcsb.utils.insilico3d>=0.16
Provides-Extra: dev
Requires-Dist: check-manifest; extra == "dev"
Provides-Extra: test
Requires-Dist: coverage; extra == "test"

# RCSB Dictionary Method Utilities

## A collection of Python Dictionary Method Utilities

## Introduction

This module contains a collection of utility classes for defining and managing the execution of
dynamic dictionary methods.

### Installation

Install via [pip](https://pypi.python.org/pypi/pip).

```bash
pip install rcsb.utils.dictionary
```

Or, to install from the source, download the library source software from the project repository:

```bash

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

```

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

```bash
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 .
```
