Metadata-Version: 2.1
Name: trinsic-okapi
Version: 1.6.0
Summary: Trinsic okapi SDK bindings
Home-page: https://github.com/trinsic-id/okapi/python
Author: Scott Phillips
Author-email: scott.phillips@trinsic.id
Project-URL: Bug Tracker, https://github.com/trinsic-id/okapi/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Trinsic Okapi SDK

Python3 bindings for the Trinsic Okapi SDK:

1. didcomm implementation in `trinsic-okapi`
3. Unit tests and examples are in `tests`

## Installation

1. `pip3 install --upgrade pip`
2. `pip3 install -r requirements.txt`
3. To find the latest binary packages, run `okapi_utils.download_binaries()`. For rate-limit increases, set the
   environment variable `API_GITHUB_TOKEN`. This will download the os/architecture binaries and install them.

## Development
1. We use [black](https://pypi.org/project/black/) to format. `pip install black`, then `black ./` in this directory
2. We use [flake8](https://flake8.pycqa.org/en/latest/user/configuration.html) to lint. `pip install flake8`, then `flake8` in this directory
