Getting Started#
Installation#
Verbs can be installed via pip
pip install verbs
Building from Source#
Requirements#
Building verbs requires a rust and cargo installation see here for instructions.
Verbs uses hatch for dependency control, see the hatch docs for installation instructions.
Building#
Using hatch the package can be built by running
hatch run dev:build
from the repo root, which will build the package to target/
Jupyter Notebook#
If you want to start a Jupyter Notebook with verbs installed you can run
hatch run notebook:jupyter
which will build the package and start a jupyter server.
Github Dependency#
Verbs can be added as a github dependency in the pyproject.toml
dependencies = [
"verbs@git+ssh://git@github.com/simtopia/verbs.git"
]
but also requires that maturin is added as a build requirement, for example
[build-system]
requires = ["setuptools >= 61.0", "maturin>=1.2,<2.0"]
build-backend = "setuptools.build_meta"