Metadata-Version: 2.1
Name: ocean_data_gateway
Version: 0.4.0
Summary: Your gateway to ocean data.
Home-page: https://github.com/axiom-data-science/ocean_data_gateway
Author: Kristen Thyng
Author-email: kristen@axds.co
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Topic :: Scientific/Engineering
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt

ocean_data_gateway
==============================
[![Build Status](https://img.shields.io/github/workflow/status/axiom-data-science/ocean_data_gateway/Tests?logo=github&style=for-the-badge)](https://github.com/axiom-data-science/ocean_data_gateway/actions)
[![Code Coverage](https://img.shields.io/codecov/c/github/axiom-data-science/ocean_data_gateway.svg?style=for-the-badge)](https://codecov.io/gh/axiom-data-science/ocean_data_gateway)
[![License:MIT](https://img.shields.io/badge/License-MIT-green.svg?style=for-the-badge)](https://opensource.org/licenses/MIT)
[![Documentation Status](https://img.shields.io/readthedocs/ocean_data_gateway/latest.svg?style=for-the-badge)](https://ocean_data_gateway.readthedocs.io/en/latest/?badge=latest)
[![Code Style Status](https://img.shields.io/github/workflow/status/axiom-data-science/ocean_data_gateway/linting%20with%20pre-commit?label=Code%20Style&style=for-the-badge)](https://github.com/axiom-data-science/ocean_data_gateway/actions)
[![Conda Version](https://img.shields.io/conda/vn/conda-forge/ocean_data_gateway.svg?style=for-the-badge)](https://anaconda.org/conda-forge/ocean_data_gateway)
[![Python Package Index](https://img.shields.io/pypi/v/ocean_data_gateway.svg?style=for-the-badge)](https://pypi.org/project/ocean_data_gateway)

Your gateway to ocean data.

--------

<p><small>Project based on the <a target="_blank" href="https://github.com/jbusecke/cookiecutter-science-project">cookiecutter science project template</a>.</small></p>


## Installation

Clone the repo:
``` bash
$ git clone https://github.com/axiom-data-science/ocean_data_gateway.git
```

In the `ocean_data_gateway` directory, install conda environment:
``` bash
$ conda env create -f environment.yml
```

For local package install, in the `ocean_data_gateway` directory:
``` bash
$ pip install -e .
```

To also develop this package, install additional packages with:
``` bash
$ conda install --file requirements-dev.txt
```

To then check code before committing and pushing it to github, locally run
``` bash
$ pre-commit run --all-files
```

Alternatively, you can just install the package plus its requirements from PyPI with
``` bash
$ pip install ocean_data_gateway
```


