From 6fce24a6ac560efa4cb779c9258266cc1ffbdd45 Mon Sep 17 00:00:00 2001
From: Thorge Petersen <petersen@rz.uni-kiel.de>
Date: Fri, 24 Mar 2023 10:54:41 +0100
Subject: [PATCH] Read long description from md readme

---
 setup.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/setup.py b/setup.py
index bf2e5056..99bcc0ff 100755
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@ from os import path
 here = path.abspath(path.dirname(__file__))
 
 # Get the long description from the relevant file
-with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
+with open(path.join(here, 'README.md'), encoding='utf-8') as f:
     long_description = f.read()
 
 setup(
@@ -21,7 +21,7 @@ setup(
     long_description=long_description,
 
     # The project's main homepage.
-    url='https://github.com//ckanext-odsh',
+    url='https://code.schleswig-holstein.de/opendata/ckanext-odsh',
 
     # Author details
     author='''HITeC e.V.''',
-- 
GitLab