Metadata-Version: 2.1
Name: econia-sdk
Version: 2.1.0
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
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: aptos-sdk (>=0.6.4,<0.7.0)
Requires-Dist: httpx (==0.23.0)
Requires-Dist: paho-mqtt (==2.0.0)
Requires-Dist: pyjwt (==1.7.1)
Requires-Dist: rel (>=0.4.9,<0.5.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
```

