Metadata-Version: 2.1
Name: mlcs-assignments
Version: 0.5.0
Summary: 
Author: Zurab Mujirishvili
Author-email: zurab.mujirishvili@fau.de
Requires-Python: >=3.11.0,<3.13.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: dash (>=3.0.4,<4.0.0)
Requires-Dist: dash-bootstrap-components (>=2.0.2,<3.0.0)
Requires-Dist: joblib (>=1.4.2,<2.0.0)
Requires-Dist: msgspec (>=0.19.0,<0.20.0)
Requires-Dist: notebook (>=7.3.2,<8.0.0)
Requires-Dist: numpy (>=2.1.0,<3.0.0)
Requires-Dist: pandas (>=2.2.3,<3.0.0)
Requires-Dist: plotly (>=6.0.0,<7.0.0)
Requires-Dist: scipy (>=1.15.1,<2.0.0)
Requires-Dist: sympy (>=1.13.1,<2.0.0)
Requires-Dist: torch (>=2.6.0,<3.0.0)
Requires-Dist: torchinfo (>=1.8.0,<2.0.0)
Requires-Dist: tqdm (>=4.67.1,<5.0.0)
Description-Content-Type: text/markdown

## Generating the Documentation

This project uses [mkdocs](https://www.mkdocs.org/) along with [mkdocstrings](https://mkdocstrings.github.io/) to generate
the documentation for the helper package accompanying the computer exercises. To build the documentation, run the
following command:

```bash
mkdocs build  # The output can be found under /public
```

If you want to preview the documentation locally (while working on it), you can run the following command:

```bash
mkdocs serve
```

