Metadata-Version: 2.4
Name: rcsb.utils.dictionary
Version: 1.39
Summary: RCSB Python Dictionary Utility Classes
Project-URL: Homepage, https://github.com/rcsb/py-rcsb_utils_dictionary
Author-email: John Westbrook <john.westbrook@rcsb.org>
Maintainer-email: Dennis Piehl <dennis.piehl@rcsb.org>, Brinda Vallat <brinda.vallat@rcsb.org>
License-Expression: Apache-2.0
License-File: LICENSE
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.9
Requires-Dist: mmcif>=0.91.0
Requires-Dist: numpy
Requires-Dist: rcsb-utils-chemref>=0.98
Requires-Dist: rcsb-utils-citation>=0.25
Requires-Dist: rcsb-utils-config>=0.40
Requires-Dist: rcsb-utils-ec>=0.25
Requires-Dist: rcsb-utils-io>=1.52
Requires-Dist: rcsb-utils-multiproc>=0.19
Requires-Dist: rcsb-utils-repository>=0.50
Requires-Dist: rcsb-utils-seq>=0.82
Requires-Dist: rcsb-utils-struct>=0.47
Requires-Dist: rcsb-utils-targets>=0.88
Requires-Dist: rcsb-utils-taxonomy>=0.43
Requires-Dist: rcsb-utils-validation>=0.31
Requires-Dist: scipy
Provides-Extra: tests
Requires-Dist: black>=21.5b1; extra == 'tests'
Requires-Dist: check-manifest; extra == 'tests'
Requires-Dist: coverage; extra == 'tests'
Requires-Dist: flake8; extra == 'tests'
Requires-Dist: pylint; extra == 'tests'
Requires-Dist: tox; extra == 'tests'
Description-Content-Type: text/markdown

# 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.9+) using
[tox](http://tox.readthedocs.io/en/latest/example/platform.html):

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