Metadata-Version: 2.1
Name: econia-sdk
Version: 1.0.4
Summary: 
Author: Econia Labs
Author-email: developers@econialabs.com
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: aptos-sdk (>=0.6.4,<0.7.0)
Description-Content-Type: text/markdown

# Econia Python SDK

## Development

To format the code, install dev dependencies with

```sh
poetry install --with dev
```

Then, run

```sh
poetry run black econia_sdk
poetry run isort econia_sdk
```

To check types with mypy, run the following command:

```sh
poetry run mypy --config-file=./mypy.ini
```

Run autoflake with the following command:

```sh
poetry run autoflake -i -r econia_sdk
```

## Documentation

To build [pdoc](https://pdoc.dev/docs/pdoc.html):

```zsh
poetry install --with docs
poetry run pdoc -o docs econia_sdk
```

