Metadata-Version: 2.1
Name: candle-nn
Version: 0.2.3
Summary: Minimalist ML framework.
Keywords: blas,tensor,machine-learning
Author: The Candle Team
License: MIT OR Apache-2.0
Requires-Python: >=3.7
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Homepage, https://github.com/huggingface/candle
Project-URL: Source, https://github.com/huggingface/candle

## Installation 

From the `candle-pyo3` directory, enable a virtual env where you will want the
candle package to be installed then run.

```bash
maturin develop -r 
python test.py
```

## Generating Stub Files for Type Hinting

For type hinting support, the `candle-pyo3` package requires `*.pyi` files. You can automatically generate these files using the `stub.py` script.

### Steps:
1. Install the package using `maturin`.
2. Generate the stub files by running:
   ```
   python stub.py
   ```

### Validation:
To ensure that the stub files match the current implementation, execute:
```
python stub.py --check
```

