From d196164fb4b35ef796164ed0b48b2c7c23b34fdf Mon Sep 17 00:00:00 2001 From: "Juan M. Tirado" Date: Fri, 17 May 2024 16:15:48 +0200 Subject: [PATCH] [PAN-1906] missing pypi reference (#23) * doc: added pypi reference --- README.md | 8 +++++++- pyproject.toml | 4 +++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 42bc266..966e94c 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,13 @@ poetry config virtualenvs.in-project true ### 2.2 Installation Steps -#### Libraries +#### From Pypi + +```bash +$ pip install pantos-common +``` + +#### From source code Create the virtual environment and install the dependencies: diff --git a/pyproject.toml b/pyproject.toml index 924753d..690a5b8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,10 +1,12 @@ [tool.poetry] name = "pantos-common" -version = "1.1.0" +version = "1.2.0" description = "Common code for Pantos off-chain components." authors = ["Pantos GmbH "] license = "GPL-3.0-only" readme = "README.md" +homepage = "https://pantos.io" +repository = "https://github.com/pantos-io/common" packages = [ { include = "pantos"} ]