Metadata-Version: 2.4
Name: randomness-kit
Version: 0.1.0
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Dist: maturin>=1.14.1
License-File: LICENSE
Summary: some tools about randomness calculation
Author-email: sbchild <sbchild0@gmail.com>
Requires-Python: >=3.14
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# Randomness Kit

some tools about randomness calculation

## How to use

todo

## Develop

Install maturin:

```bash
uv tool install maturin
```

Build debug package, and install in local venv:

```bash
maturin develop --uv
uv run python3
```

Build release package:

```bash
uv build
ls dist  # whl file generates here
```

Commit a release:

```bash
uv run release.py
```

Generate CI config:

```bash
maturin generate-ci github > .github/workflows/CI.yml
```

