pymath 0.1.2

A binary representation compatible Rust implementation of Python's math library.
Documentation
[dependencies.libc]
version = "0.2"

[dependencies.malachite-bigint]
optional = true
version = "0"

[dependencies.num-bigint]
optional = true
version = "0.4"

[dependencies.num-complex]
optional = true
version = "0.4"

[dependencies.num-integer]
optional = true
version = "0.1"

[dependencies.num-traits]
optional = true
version = "0.2"

[dev-dependencies.proptest]
version = "1.6.0"

[dev-dependencies.pyo3]
features = ["abi3", "auto-initialize"]
version = "0.27"

[features]
_bigint = ["dep:num-traits", "dep:num-integer"]
complex = ["dep:num-complex"]
default = ["complex"]
malachite-bigint = ["_bigint", "dep:malachite-bigint"]
mul_add = []
num-bigint = ["_bigint", "dep:num-bigint"]

[lib]
name = "pymath"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A binary representation compatible Rust implementation of Python's math library."
edition = "2024"
license = "PSF-2.0"
name = "pymath"
readme = "README.md"
repository = "https://github.com/RustPython/pymath"
resolver = "2"
version = "0.1.2"