Metadata-Version: 2.1
Name: numba-integrators
Version: 0.0.3
Summary: Numerical integrators using Numba
Author: Limespy
Project-URL: Homepage, https://github.com/Limespy/numba-integrators
Project-URL: Changelog, https://github.com/Limespy/numba-integrators/blob/main/README.md#Changelog
Project-URL: Issue Tracker, https://github.com/Limespy/numba-integrators/issues
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numba (>=0.57.0)
Requires-Dist: numpy (>=1.24.3)
Requires-Dist: scipy (>=1.10.1)
Provides-Extra: build
Requires-Dist: limedev (>=0.1.0) ; extra == 'build'
Provides-Extra: dev
Requires-Dist: colorama (>=0.4) ; extra == 'dev'
Requires-Dist: limedev (>=0.1.0) ; extra == 'dev'
Requires-Dist: mypy (>=1.2.0) ; extra == 'dev'
Requires-Dist: pre-commit (>=3.2.2) ; extra == 'dev'
Requires-Dist: pytest (>=7.2.0) ; extra == 'dev'
Requires-Dist: reorder-python-imports (>=3.9.0) ; extra == 'dev'
Requires-Dist: tox (>=4.5.1) ; extra == 'dev'
Requires-Dist: yamdog (>=0.5.0) ; extra == 'dev'

[![PyPI Package latest release](https://img.shields.io/pypi/v/numba_integrators.svg)][1]
[![PyPI Wheel](https://img.shields.io/pypi/wheel/numba_integrators.svg)][1]
[![Supported versions](https://img.shields.io/pypi/pyversions/numba_integrators.svg)][1]
[![Supported implementations](https://img.shields.io/pypi/implementation/numba_integrators.svg)][1]

# Numba Integrators <!-- omit in toc -->

Numba Integrators is collection numerical integrators based on the ones in [SciPy][2]. Aim is to make them faster and much more compatible with [Numba][3].

## Table of Contents <!-- omit in toc -->

- [Quick start guide](#quick-start-guide)
    - [The first steps](#the-first-steps)
        - [Installing](#installing)
        - [Importing](#importing)

# Quick start guide

Here's how you can start numerically

## The first steps

### Installing

Install Numba Integrators with pip

```
pip install numba_integrators
```

### Importing

Import name is the same as install name, `numba_integrators`.

```python
import numba_integrators
```

# Changelog <!-- omit in toc -->

## 0.0.3 2023-05-14 <!-- omit in toc -->

- Setup

[1]: <https://pypi.org/project/numba_integrators> "Project PyPI page"
[2]: <https://scipy.org/> "SciPy organisation homepage"
[3]: <https://numba.pydata.org> "Numba organisation homepage"
