Metadata-Version: 2.1
Name: laminar_learn
Version: 0.3.1
Summary: Add short description here
Maintainer-email: Christian Kleiber <christian.kleiber@stud.uni-heidelberg.de>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.md
License-File: COPYING.md
Requires-Dist: numpy
Requires-Dist: torch
Requires-Dist: torchdiffeq
Requires-Dist: tqdm
Requires-Dist: scipy
Requires-Dist: matplotlib
Requires-Dist: scikit-learn
Provides-Extra: tests
Requires-Dist: pytest; extra == "tests"
Requires-Dist: pytest-cov; extra == "tests"
Requires-Dist: nbval; extra == "tests"
Provides-Extra: docs
Requires-Dist: ipykernel; extra == "docs"
Requires-Dist: nbsphinx; extra == "docs"
Requires-Dist: nbsphinx-link; extra == "docs"
Requires-Dist: sphinx; extra == "docs"
Requires-Dist: sphinx_mdinclude; extra == "docs"
Requires-Dist: sphinx_rtd_theme; extra == "docs"

# Welcome to LAMINAR

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/CKleiber/LAMINAR/ci.yml?branch=main)](https://github.com/CKleiber/LAMINAR/actions/workflows/ci.yml)
[![Documentation Status](https://readthedocs.org/projects/laminar-learn/badge/)](https://laminar-learn.readthedocs.io/)
[![codecov](https://codecov.io/gh/CKleiber/LAMINAR/branch/main/graph/badge.svg)](https://codecov.io/gh/CKleiber/LAMINAR)

## Installation

The Python package `LAMINAR` can be installed from PyPI:

```
python -m pip install laminar-learn
```

## Development installation

If you want to contribute to the development of `LAMINAR`, we recommend
the following editable installation from this repository:

```
git clone https://github.com/CKleiber/LAMINAR.git
cd LAMINAR
python -m pip install --editable .[tests]
```

Having done so, the test suite can be run using `pytest`:

```
python -m pytest
```

## Acknowledgments

This repository was set up using the [SSC Cookiecutter for Python Packages](https://github.com/ssciwr/cookiecutter-python-package).
