Metadata-Version: 2.1
Name: pypairtree
Version: 1.1.0
Summary: Python implementation of Pairtree for storing objects in a filesystem hierarchy that maps object identifiers to two character directory paths
Home-page: https://github.com/unt-libraries/pypairtree
Author: University of North Texas Libraries
Author-email: lauren.ko@unt.edu
License: LICENSE.txt
Keywords: python pairtree
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6

# pypairtree [![Build Status](https://travis-ci.org/unt-libraries/pypairtree.svg?branch=master)](https://travis-ci.org/unt-libraries/pypairtree)

pypairtree is a Python implementation of Pairtree for storing objects
in a filesystem hierarchy that maps object identifiers to two character
directory paths (http://tools.ietf.org/html/draft-kunze-pairtree-01).

## License

See LICENSE.txt.

## Acknowledgements

pypairtree was developed at the UNT Libraries and has been worked on
by a number of developers over the years including

- [Kurt Nordstrom](https://github.com/kurtnordstrom)
- Brandon Fredericks
- [Mark Phillips](https://github.com/vphill)
- [Lauren Ko](https://github.com/ldko)
- [Joey Liechty](https://github.com/yeahdef)
- [Gio Gottardi](https://github.com/somexpert)

If you have questions about the project feel free to contact Mark Phillips
at mark.phillips@unt.edu.

## Installation

Install with:
```sh
$ python setup.py install
```

## Tests

Unit tests are provided. To run them via Tox, ensure you are in the
pypairtree directory with the tox.ini file and execute:

```sh
$ tox
```


