Commit 43d11395 authored by Wolfgang Knopki's avatar Wolfgang Knopki
Browse files

Merge branch 'revert-80c11ce1' into 'master'

Revert "Update setup.py, no longer requires README.md for long description"

See merge request !12
parents 80c11ce1 5f93ab3b
Pipeline #6563 passed with stage
in 14 seconds
...@@ -6,6 +6,9 @@ from os import path ...@@ -6,6 +6,9 @@ from os import path
here = path.abspath(path.dirname(__file__)) here = path.abspath(path.dirname(__file__))
# Get the long description from the relevant file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup( setup(
name='''ckanext-theme_hft''', name='''ckanext-theme_hft''',
...@@ -16,7 +19,7 @@ setup( ...@@ -16,7 +19,7 @@ setup(
version='0.0.1', version='0.0.1',
description=''' Customized UI of CKAN of HFT Stuttgart''', description=''' Customized UI of CKAN of HFT Stuttgart''',
long_description=''' Customized UI of CKAN of HFT Stuttgart''', long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
# Choose your license # Choose your license
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment