Metadata-Version: 2.1
Name: vonage_cloud_runtime
Version: 1.1.1
Summary: Python SDK for Vonage Cloud Runtime
License: Apache
Author: Vonage
Author-email: devrel@vonage.com
Requires-Python: >=3.10.5,<4.0.0
Classifier: License :: Other/Proprietary 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-apps-sdk .
```

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