From 1822be029e73795c332cbeb145c4cfc4fb7669f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Fri, 4 Aug 2023 00:33:12 -0300 Subject: [PATCH] pyproject: Add build command to generate binds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 2a4fc99b2..c41a98a36 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,5 +37,6 @@ dependencies = [ ] [tool.hatch.envs.dev.scripts] +build = "maturin build" install = "maturin develop" build-doc = "install && sphinx-build ./docs/source docs/_build"