Metadata-Version: 2.1
Name: nerualpha
Version: 4.1.0rc4
Summary: neru-sdk for python developers
License: MIT
Author: Sergei Rastrigin
Author-email: sergei.rastrigin@vonage.com
Requires-Python: >=3.10.5,<4.0.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: PyJWT[crypto]
Requires-Dist: aiohttp
Requires-Dist: pendulum
Requires-Dist: requests
Description-Content-Type: text/markdown

## To build the SDK locally:
Because I've been experiencing some issues with the build process on `Mac M1`, I decided to use docker to install dependencies and build the SDK. I've created a `Dockerfile` that can be used to build the SDK. 

I mount the current directory to the container to have the artifacts after the build process available on the host machine in `/dist` folder.

The `Dockerfile` is located in the `python` directory. To build the SDK, run the following command:

```bash
# Build the docker image
docker build -t neru-sdk-python .
```

```bash
# Build the SDK
make build
```
