From ba5c57086e19313d787b0e8426aa20de1bbc604e Mon Sep 17 00:00:00 2001
From: Christoph Knote <christoph.knote@med.uni-augsburg.de>
Date: Tue, 19 Apr 2022 14:27:58 +0200
Subject: [PATCH] Minor updates

---
 README.md      | 5 +++--
 pyproject.toml | 9 +++++----
 2 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/README.md b/README.md
index 9ec7098..f37f4af 100644
--- a/README.md
+++ b/README.md
@@ -16,12 +16,13 @@ make your changes and then [submit a merge request](https://mbees.med.uni-augsbu
 
 ## Installation of the development version
 
-Clone this repository / or your fork, then install e.g. as "editable":
+Clone this repository / or your fork and install. We use [poetry](https://python-poetry.org/) for packaging, which needs to be installed.
 
 ```
 git clone https://mbees.med.uni-augsburg.de/gitlab/mbees/icartt_pypackage.git or <URL of your fork>
 cd icartt_pypackage
-pip install -e .
+poetry install
+poetry shell
 ```
 
 Note: the package is managed with [poetry](https://python-poetry.org/).
diff --git a/pyproject.toml b/pyproject.toml
index e84c2ae..e0deeae 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -3,11 +3,12 @@ name = "icartt"
 version = "2.0.0-rc1"
 description = "ICARTT format reader and writer"
 license = "GPL-3.0-or-later"
-authors = ["Christoph Knote <christoph.knote@med.uni-augsburg.de>"]
+authors = ["Christoph Knote <christoph.knote@med.uni-augsburg.de>", "Florian Obersteiner <florian.obersteiner@kit.edu>"]
 readme = "README.md"
 homepage = "https://mbees.med.uni-augsburg.de/"
 repository = "https://mbees.med.uni-augsburg.de/gitlab/mbees/icartt_pypackage"
-keywords = [ "atmosphere", "file format", "icartt", "ames", "nasa" ]
+documentation = "https://mbees.med.uni-augsburg.de/docs/icartt/
+keywords = [ "atmosphere", "file format", "ames", "nasa" ]
 classifiers = [
     "Programming Language :: Python :: 3",
     "Development Status :: 5 - Production/Stable",
@@ -28,11 +29,11 @@ packages = [
 
 
 [tool.poetry.urls]
-issues = "http://mbees.med.uni-augsburg.de/gitlab/mbees/icartt_pypackage/issues"
+"Bug Tracker" = "http://mbees.med.uni-augsburg.de/gitlab/mbees/icartt_pypackage/issues"
 
 
 [tool.poetry.dependencies]
-python = ">=3.8,<4"
+python = ">=3.8"
 numpy  = ">= 1.12"
 
 
-- 
GitLab