Metadata-Version: 2.4
Name: refnd
Version: 0.0.0
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.10
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# Refnd Python

## Build Package
1. Generate stubs
```shell
cargo run --bin stub_gen
```
2. Build package
```shell
uv build
```
## Build Docs
After generating stubs, run this command:
```bash
cd py
uv run --group docs maturin develop && rm -rf docs/build && uv run --group docs sphinx-build docs/source docs/build/html
open docs/build/html/index.html
```

