Installation
Using uv
uv is an extremely fast Python package installer.
You can use it to install mathlib and try it out:
$ uv pip install mathlib
Using a PEP 621 compliant build backend
PEP 621 is the standard way to store your dependencies in a pyproject.toml file.
You can add mathlib to your pyproject.toml file:
[project]
dependencies = [
"mathlib~=0.5",
....
]
Python Version Requirement
Please note that mathlib requires Python 3.9 or higher. Please ensure
that you have such a version installed in your system. If not,
consider using a tool like pyenv to create a shell with the required Python version.