Metadata-Version: 2.1
Name: oeis-api
Version: 0.1.0
Summary: interface to the OEIS
Home-page: https://github.com/bhgomes/oeis
Author: Brandon Gomes
Author-email: bhgomes.github@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Development Status :: 1 - Planning
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: sympy
Requires-Dist: wrapt
Requires-Dist: python-box


# oeis
[![Build Status](https://travis-ci.com/bhgomes/oeis.svg?&branch=master)](https://travis-ci.com/bhgomes/oeis)
[![Documentation Status](https://readthedocs.org/projects/oeis/badge/?version=latest)](https://oeis.readthedocs.io/en/latest/?badge=latest)
[![codecov](https://codecov.io/gh/bhgomes/oeis/branch/master/graph/badge.svg)](https://codecov.io/gh/bhgomes/oeis) 
[![Maintainability](https://api.codeclimate.com/v1/badges/0e5458a2571e7b6c63f6/maintainability)](https://codeclimate.com/github/bhgomes/oeis/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/0e5458a2571e7b6c63f6/test_coverage)](https://codeclimate.com/github/bhgomes/oeis/test_coverage)

_Interface to [OEIS](https://oeis.org)_

## Installation

```bash
pip install oeis-api
```

Go to the [PyPi](https://pypi.org/project/oeis-api) page for more details.

## Documentation

Go to [bhgomes.github.io/oeis](https://bhgomes.github.io/oeis) for documentation.

## Install Anaconda Testing Environment

For quick installation:

```bash
conda create env -f environment.yml
source activate oeis
```

For a more customized environment replace `{ }` with your choices and run:

```bash
conda create -n {environment_name} python={python_version} pip
conda env update -n {environment_name} -f environment.yml
source activate {environment_name}
```

or edit the `environment.yml` file to your choosing.

---

_[Copyright (c) 2019 Brandon Gomes](LICENSE)_


