rule30 0.3.0

Pseudo random number generator with cellular automaton rule 30.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# syntax=v1


def build():
    base(dev=True)
    install.apt_packages(name=["build-essential"])
    install.conda()
    install.python()
    install.python_packages(name=["maturin"])
    run(
        [
            "curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y",
        ]
    )
    runtime.environ(extra_path=["/home/envd/.cargo/bin"])