Metadata-Version: 2.4
Name: jp_odesolver
Version: 0.0.2
Summary: A simple Python project for solving and eventually plotting numerically obtained solutions for ODEs
Author-email: Patrik Jelic <patrik.jelic@uni-a.de>
License-Expression: MIT
Project-URL: Homepage, https://github.com/patrikj-info/odesolver
Project-URL: Issues, https://github.com/patrikj-info/odesolver/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=2.2.5
Requires-Dist: matplotlib>=3.10.1
Dynamic: license-file

# odesolver

A simple tool to solve ODEs numerically and plot the solution.


## Features 
    - Solve ODEs with the Euler method 
    - Solve ODEs with the RK4 method

## Installation

You can install the package via **PyPI** or from **source**.

### Install from PyPI

```bash
    pip install odesolver
```

### Install from Source (GitHub)

```bash
    git clone https://github.com/patrikj-info/odesolver.git
    cd odesolver
    pip install .
```
