Metadata-Version: 2.4
Name: skleaarn
Version: 1.0.6
Summary: A utility package for setting up a local machine learning workspace with scripts and reference materials.
License: MIT
Keywords: machine-learning,workspace,setup,python,utilities
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# skleaarn

A lightweight utility package for setting up a local machine learning workspace. Upon installation, automatically extracts a curated set of Python scripts and reference materials to a convenient folder on your system.

## Installation

```bash
pip install skleaarn
```

## Usage

```python
import skleaarn
```

That's it. The package handles everything automatically on first import.

## Manual Install

```python
import skleaarn
skleaarn.install()                 # default location
skleaarn.install("C:/MyFolder")   # custom location
```

Or from the command line:

```bash
skleaarn
skleaarn C:/MyFolder
```

## License

MIT
