Metadata-Version: 2.2
Name: machina-sdk
Version: 1.0.0
Summary: Machina Sports API SDK
Author: Fernando Bombassaro Martins
Author-email: Fernando Bombassaro Martins <fernando@machina.gg>
License: MIT
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9,<4.0
Description-Content-Type: text/markdown
Requires-Dist: requests<3.0.0,>=2.26.0
Requires-Dist: pydantic
Dynamic: author
Dynamic: requires-python

# Machina @ SDK

## Installation
```shell
python3.11 -m venv venv

source venv/bin/activate

pip install pdm

pip install build

pdm install

python -m build

pip install ~/machina/machina-core-sdk/dist/machina_sdk-0.1.21-py3-none-any.whl --force-reinstall
```

## Release a version
```shell
chmod +x release.sh

./release.sh
```

## Publication
```shell
pip install twine

twine upload dist/*
```
