From 781135e884617395ee7c5794d8628709e52bf3b4 Mon Sep 17 00:00:00 2001 From: dcleres Date: Mon, 29 Jul 2024 11:05:43 +0200 Subject: [PATCH] Close #LGVISIUM-51: Edited the README to make it possible to install the python packages from a zsh terminal --- README.md | 4 ++-- pyproject.toml | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5ebddf4f..031f3c1b 100644 --- a/README.md +++ b/README.md @@ -19,10 +19,10 @@ The below commands will install the package for you (assuming you have successfu ```bash python -m venv env source env/bin/activate -pip install -e .[all] +pip install -e '.[all]' ``` -Alternatively you can replace the `pip install -e .[all]` command with `pip install git+https://github.com/swisstopo/swissgeol-boreholes-dataextraction.git` in production scenarios. +Alternatively you can replace the `pip install -e '.[all]'` command with `pip install git+https://github.com/swisstopo/swissgeol-boreholes-dataextraction.git` in production scenarios. ## Run data extraction To execute the data extraction pipeline, follow these steps: diff --git a/pyproject.toml b/pyproject.toml index 75e3a4f5..2f159742 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,6 +14,7 @@ dependencies = [ "levenshtein", "pathlib", "python-dotenv", + "setuptools", "scikit-learn>=1.4.0", "click>=8.0.0", "PyYAML>=6.0.1",