Metadata-Version: 2.1
Name: trainml
Version: 0.0.1
Summary: trainML client SDK and command line utilities
Home-page: https://github.com/trainML/trainml-cli
Author: trainML
Author-email: support@trainml.ai
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: aiohttp (>=3.7)
Requires-Dist: boto3 (>=1.16)
Requires-Dist: python-jose[cryptography] (>=3.2)
Requires-Dist: requests (>=2.25)

<div align="center">
  <a href="https://www.trainml.ai/"><img src="https://www.trainml.ai/static/img/trainML-logo-purple.png"></a><br>
</div>

trainML CLI
=========================
Provides programmatic access to trainML platform.

## Prerequisites
You must first generate an API key for your trainML account from [account settings page](https://app.trainml.ai/account/settings).  Once you have downloaded the credentials file, move it to the `~/.trainml` directory and ensure only you have access to it:

```
mkdir -p ~/.trainml
mv credentials.json ~/.trainml/credentials.json
chmod 600 ~/.trainml/credentials.json
```

Install the project requirements in the python environment you intend to use:

```
pip install -r requirements.txt
```


