Metadata-Version: 2.1
Name: deepracer-utils
Version: 0.1
Summary: A set of tools for working with DeepRacer training
Home-page: https://github.com/aws-deepracer-community/deepracer-utils/
Author: AWS DeepRacer Community
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/aws-deepracer-community/deepracer-utils/issues
Project-URL: Source, https://github.com/aws-deepracer-community/deepracer-utils/
Keywords: aws deepracer awsdeepracer
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: Log Analysis
Requires-Python: >=3.5.*, <4
Description-Content-Type: text/markdown
Requires-Dist: boto3 (>=1.12.0)
Requires-Dist: matplotlib (>=3.1.0)
Requires-Dist: numpy (>=1.18.0)
Requires-Dist: pandas (>=1.0.0)
Requires-Dist: python-dateutil (<3.0.0,>=2.1)
Requires-Dist: scikit-learn (>=0.22.0)
Requires-Dist: shapely (>=1.7.0)
Provides-Extra: dev
Requires-Dist: check-manifest ; extra == 'dev'
Provides-Extra: test
Requires-Dist: coverage ; extra == 'test'

# deepracer-utils
A set of utilities to take your DeepRacer experience to the next level.


## Development

### Prepare the environment
For pip/venv:
```
python3 -m venv env
source env/bin/activate
pip install -r requirements.txt
```
_(For newer systems python3 may be referred to as python)_

For Anaconda:
```
conda create --name env pip
conda activate pip
pip install -r requirements.txt
```

### Install deepracer-utils for development
```
python setup.py develop
```
Once finished working, run:
```
python setup.py develop --uninstall
```

See [Python Packaging User Guide](https://packaging.python.org/guides/distributing-packages-using-setuptools/#id70) for more info.

### Testing

Run:
```
tox
```
This will package the project, install and run tests.

### Verifying the style guide

Run:
```
pycodestyle
```

### Packaging, distribution

TBC
TODO: Add wheel and twine

## License
This project retains the license of the 
[aws-deepracer-workshops](https://github.com/aws-samples/aws-deepracer-workshops)
project which has been forked for the initial Community contributions.
Our understanding is that it is a license more permissive than the MIT license
and allows for removing of the copyright headers. We have decided to preserve
the headers and only add copyright notice for the Community.

## Standards and good practices, contributing
While doing our best to make deepracer-utils an outcome of best practices and standards,
we are using what we learn, as we learn. If you see a solution that would be better to
apply, if you see something that is a risk, do raise it with the Community. Thank you.

We are open to merge requests. Please open an issue first to agree on the outcomes of
your work.

## Contact
You can contact Tomasz Ptak through the Community Slack: http://join.deepracing.io


