Metadata-Version: 2.1
Name: ProxyStore
Version: 0.3.1
Summary: Python Lazy Object Proxy Interface for Distributed Stores
Home-page: https://github.com/gpauloski/ProxyStore
Author: Greg Pauloski
Author-email: jgpauloski@uchicago.edu
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
License-File: LICENSE
Requires-Dist: lazy-object-proxy (>=1.6.*)
Requires-Dist: cloudpickle (>=1.6.0)

# ProxyStore

[![Tests](https://github.com/gpauloski/ProxyStore/actions/workflows/tests.yml/badge.svg)](https://github.com/gpauloski/ProxyStore/actions)
[![Style](https://github.com/gpauloski/ProxyStore/actions/workflows/style.yml/badge.svg)](https://github.com/gpauloski/ProxyStore/actions)
[![Docs](https://readthedocs.org/projects/proxystore/badge/?version=latest)](https://proxystore.readthedocs.io/en/latest/?badge=latest)
[![Coverage](https://codecov.io/gh/gpauloski/ProxyStore/branch/main/graph/badge.svg?token=16KFBPKF0Y)](https://codecov.io/gh/gpauloski/ProxyStore)


Python Lazy Object Proxy Interface for Distributed Stores

## Installation

Install via pip:
```
$ pip install ProxyStore
```

Installing with Conda for local development:
```
$ git clone https://github.com/gpauloski/ProxyStore.git
$ cd ProxyStore
$ conda env create --file environment.yml
$ conda activate ProxyStore
$ pre-commit install
```

## Documentation

Complete documentation for ProxyStore available [here](https://proxystore.readthedocs.io/en/latest).


