From f9a3ec8ba6b2c679bb7a408871c1da7df4dce9a2 Mon Sep 17 00:00:00 2001 From: Mose Mueller Date: Thu, 31 Oct 2024 07:47:13 +0100 Subject: [PATCH] updates Readme (moving from gitlab.phys.ethz.ch to github.com) --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 49361e6..cce096c 100644 --- a/README.md +++ b/README.md @@ -7,28 +7,28 @@ Ensure you have Python 3.10 or later installed on your system. Dependencies of this package are managed with [`poetry`](https://python-poetry.org/docs/#installation). Install the `pydase_service_base` as follows: ```bash -poetry add git+ssh://git@gitlab.phys.ethz.ch:tiqi-projects/qchub/icon-services/pydase_service_base.git +poetry add git+ssh://git@github.com:tiqi-group/pydase_service_base.git ``` To utilize specific functionalities such as `IonizerServer`, `InfluxDBSession`, or `PostgresDatabaseSession`, you need to install the relevant optional dependencies: - For `IonizerServer`, include the `ionizer` extra: ```bash - poetry add "git+ssh://git@gitlab.phys.ethz.ch:tiqi-projects/qchub/icon-services/pydase_service_base.git#main[ionizer]" + poetry add "git+ssh://git@github.com:tiqi-group/pydase_service_base.git#main[ionizer]" ``` - For `InfluxDBSession`, include the `influxdbv2` extra: ```bash - poetry add "git+ssh://git@gitlab.phys.ethz.ch:tiqi-projects/qchub/icon-services/pydase_service_base.git#main[influxdbv2]" + poetry add "git+ssh://git@github.com:tiqi-group/pydase_service_base.git#main[influxdbv2]" ``` - For `PostgresDatabaseSession`, include the `postgresql` extra: ```bash - poetry add "git+ssh://git@gitlab.phys.ethz.ch:tiqi-projects/qchub/icon-services/pydase_service_base.git#main[postgresql]" + poetry add "git+ssh://git@github.com:tiqi-group/pydase_service_base.git#main[postgresql]" ``` or directly add the following line to the `pyproject.toml` file: ```toml -pydase-service-base = {git = "git@gitlab.phys.ethz.ch:tiqi-projects/qchub/icon-services/pydase_service_base.git", rev = "main", extras = ["ionizer", "postgresql", "ionizer"]} +pydase-service-base = {git = "git@github.com:tiqi-group/pydase_service_base.git", rev = "main", extras = ["ionizer", "postgresql", "ionizer"]} ``` ## Configuration