Metadata-Version: 2.1
Name: anchorpy
Version: 0.1.1
Summary: The Python Anchor client.
Home-page: https://github.com/kevinheavey/anchorpy
Author: kevinheavey
Author-email: kevinheavey123@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: apischema (>=0.15.6,<0.16.0)
Requires-Dist: borsh-construct-tmp (>=0.1.0,<0.2.0)
Requires-Dist: construct-typing (>=0.5.1,<0.6.0)
Requires-Dist: inflection (>=0.5.1,<0.6.0)
Requires-Dist: solana (>=0.16.0,<0.17.0)
Requires-Dist: sumtypes (>=0.1a5,<0.2)
Project-URL: Documentation, https://kevinheavey.github.io/anchorpy/
Project-URL: Repository, https://github.com/kevinheavey/anchorpy
Description-Content-Type: text/markdown

# AnchorPy
<div align="center">
    <img src="https://raw.githubusercontent.com/kevinheavey/anchorpy/main/docs/img/caduceus-anchor.jpg" width="200" height="260">
</div>

---

AnchorPy is the Python client for [Anchor](https://github.com/project-serum/anchor). It allows you to interact with Anchor programs using Python.

[Documentation](https://kevinheavey.github.io/anchorpy/)



## Installation

```sh
pip install anchorpy

```


### Development Setup

If you want to contribute to AnchorPy, follow these steps to get set up:

1. Install [poetry](https://python-poetry.org/docs/#installation)
2. Install dev dependencies:
```sh
poetry install

```
3. Install [nox-poetry](https://github.com/cjolowicz/nox-poetry) (note: do not use Poetry to install this, see [here](https://medium.com/@cjolowicz/nox-is-a-part-of-your-global-developer-environment-like-poetry-pre-commit-pyenv-or-pipx-1cdeba9198bd))
4. Activate the poetry shell:
```sh
poetry shell

```

