Metadata-Version: 2.4
Name: fomlabkit
Version: 1.0.1
Summary: Fundamentals Of Machine Learning Lab Experiments
Author: Manoharan
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: matplotlib
Requires-Dist: scikit-learn
Dynamic: author
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: summary

# FOML Lab Kit

`fomlabkit` is a small teaching package for Fundamentals Of Machine Learning laboratory work.

## Install

```bash
pip install fomlabkit
```

## Use

```python
import foml

foml.list()
foml.exp1a()
foml.exp1b()
```

## Local Development

```bash
pip install -r requirements.txt
python -m build
python -m twine upload dist/*
```

## Notes

The package keeps the import name `foml`, while the publishable distribution name is `fomlabkit`.
Datasets are bundled from the repository `datasets/` folder and also mirrored inside the package data path so installed copies can still find them.
