digit-bin-index 0.2.4

A high-performance, O(P) data structure for weighted random sampling of binned probabilities, ideal for large-scale simulations.
Documentation
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"

[project]
# The 'name' must be defined statically here.
# It MUST match the 'name' in your Cargo.toml's [package] section.
name = "digit-bin-index"

requires-python = ">=3.8" # Matches abi3-py38 and classifiers

# These fields are read from Cargo.toml by maturin, so we list them as dynamic.
# The second error you saw lists exactly which fields are allowed to be dynamic.
dynamic = ["version", "description", "authors", "license", "readme"]

# Classifiers are Python-specific, so we define them statically here.
classifiers = [
    "Programming Language :: Rust",
    "Programming Language :: Python :: Implementation :: CPython",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.8",
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
]