From d63fb150adb8b5f7c4a38dfbafc47986752d7316 Mon Sep 17 00:00:00 2001 From: jgunstone Date: Mon, 15 Jan 2024 13:08:27 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20update=20instructions=20of=20pac?= =?UTF-8?q?kaging=20/=20installation=20/=20dev=20installation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index c202611..88c70e0 100644 --- a/README.md +++ b/README.md @@ -52,23 +52,22 @@ for example it would be great to create a `RunSnake` app for executing SnakeMake ## Install -TODO: publish publicly and update the install commands below - -- install from network channel - ```bash -conda config --add channels file:///mnt/conda-bld -mamba install ipyrun -# or -mamba install -c file:///mnt/conda-bld ipyrun +pip install ipyrun ``` -- install pip dependencies +## Develop ```bash -pip install mydocstring +mamba env create -f environment-dev.yml +pytest ``` -## Build +## Packaging and Publish -- [conda-bld](docs/conda-bld.md) +```sh +# NOTE: restricted to core-maintainers only +mamba activate hatcher # or conda env with hatch installed +hatch build # builds to local folder +hatch publish -u __token__ -a # publishes to pypi +```