summaryrefslogtreecommitdiff
path: root/candle-pyo3/README.md
blob: be6d4f685aabba167c52f53d57ec5fc3ca763625 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
## 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
```