Skip to content

Commit 83f9e70

Browse files
committed
bump to 0.1.1
Now with README.md description
1 parent b62a455 commit 83f9e70

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

cwlprov/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
__author__ = "Stian Soiland-Reyes <https://orcid.org/0000-0001-9842-9718>"
2121
__copyright__ = "© 2018 Software Freedom Conservancy (SFC)"
2222
__license__ = "Apache License, version 2.0 (https://www.apache.org/licenses/LICENSE-2.0)"
23-
__version__ = "0.1.0"
23+
__version__ = "0.1.1"

setup.py

+3-5
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,9 @@
2626

2727
here = path.abspath(path.dirname(__file__))
2828

29-
#with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
30-
# long_description = f.read()
29+
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
30+
long_description = f.read()
3131

32-
long_description = """
33-
cwlprov API for Python
34-
"""
3532
import cwlprov
3633

3734
setup(
@@ -40,6 +37,7 @@
4037
version = cwlprov.__version__,
4138
description = 'cwlprov API for Python',
4239
long_description=long_description,
40+
long_description_content_type="text/markdown",
4341
author = 'Stian Soiland-Reyes',
4442
author_email = '[email protected]',
4543
include_package_data=True,

0 commit comments

Comments
 (0)