Metadata-Version: 2.1
Name: mathext
Version: 0.2.0
Summary: An extension to the math library provided by Python.
Home-page: https://github.com/Richienb/mathext
Author: Richie Bendall
Author-email: richiebendall@gmail.com
License: MIT License
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Security :: Cryptography
Classifier: Topic :: Software Development :: Libraries
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown

[![Travis CI Build Status](https://img.shields.io/travis/com/Richienb/mathext/master.svg?style=for-the-badge)](https://travis-ci.com/Richienb/mathext)
[![CodeFactor Score](https://www.codefactor.io/repository/github/richienb/mathext/badge?style=for-the-badge)](https://www.codefactor.io/repository/github/richienb/mathext)
[![Codecov Score](https://img.shields.io/codecov/c/github/Richienb/mathext/master.svg?style=for-the-badge)](https://codecov.io/gh/Richienb/mathext)
[![PyPI Status](https://img.shields.io/pypi/status/mathext.svg?style=for-the-badge)](https://pypi.org/project/mathext)

[![Mathext](https://a.icons8.com/dZbSxfid/P8gu1y/mathext.svg)](#)

An extension to the math library provided by Python.

Documentation available [here](https://mathext.richie-bendall.ml/).

## Getting started

### Install via pip
```sh
pip install mathext
```

### Importing
```py
import mathext
```

### Example usage
```py
if mathext.triangular(5): print("5 is a triangular number.")
```

For more commands, visit [this website](https://mathext.richie-bendall.ml/commands/mathext.html).


