Metadata-Version: 2.1
Name: py-roboat-enviro
Version: 0.0.1
Summary: Python wrapper for the Roboat Environmental Data REST API.
Home-page: https://github.com/drewmee/py-roboat-enviro
Author: Drew Meyers
Author-email: drewm@mit.edu
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Science/Research
Description-Content-Type: text/markdown
Requires-Dist: uplink (>=0.9.4)
Provides-Extra: develop
Requires-Dist: twine (>=3.2.0) ; extra == 'develop'
Requires-Dist: pre-commit (>=2.8.2) ; extra == 'develop'
Provides-Extra: docs
Requires-Dist: sphinx (>=3.2.0) ; extra == 'docs'
Requires-Dist: sphinx-automodapi (>=0.12) ; extra == 'docs'
Requires-Dist: sphinx-rtd-theme (>=0.5.0) ; extra == 'docs'
Requires-Dist: msmb-theme (>=1.2.0) ; extra == 'docs'
Requires-Dist: nbsphinx (>=0.7.1) ; extra == 'docs'
Requires-Dist: sphinx-copybutton (>=0.3.0) ; extra == 'docs'
Requires-Dist: black (>=20.8b1) ; extra == 'docs'
Requires-Dist: isort (>=5.4.2) ; extra == 'docs'
Requires-Dist: rstcheck (>=3.3.1) ; extra == 'docs'
Provides-Extra: jupyter
Requires-Dist: ipython (>=7.16.1) ; extra == 'jupyter'
Requires-Dist: jupyter (>=1.0.0) ; extra == 'jupyter'
Requires-Dist: jupyterlab (>=2.2.2) ; extra == 'jupyter'
Requires-Dist: pyeem (>=0.2.0) ; extra == 'jupyter'
Provides-Extra: tests
Requires-Dist: pytest (>=6.0.1) ; extra == 'tests'
Requires-Dist: pytest-dotenv (>=0.5.2) ; extra == 'tests'
Requires-Dist: tox (>=3.16.1) ; extra == 'tests'

# py-roboat-enviro

![Test](https://github.com/drewmee/py-roboat-enviro/workflows/Test/badge.svg)
[![License](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/drewmee/py-roboat-enviro/blob/master/LICENSE)
[![Code style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

A python wrapper for the Roboat environmental data RESTful API

## Installation

Install via pip:

    $ pip install py_roboat_enviro [--upgrade]

## Documentation

  Full documentation can be found [here](https://py-roboat-enviro.readthedocs.io/).

## Dependencies for Local Development

If you wish to build the local documentation or run unit tests, there are a few additional dependencies. Those can be installed by:

pip install -e ".[docs, tests]"

## Building docs locally
make -C docs clean
make -C docs html

## Run tests locally
pytest tests/test_api.py -s

## License

This library is licensed under the MIT license. The full text of the license can be found in this repository at LICENSE.txt.

