Skip to content

Commit 8b756a4

Browse files
committed
Fix setup.py because of README format change
1 parent 16a2a2a commit 8b756a4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
""".strip().splitlines()
2424
with open(join(CURDIR, 'src', 'robotlibcore.py')) as f:
2525
VERSION = re.search('\n__version__ = "(.*)"', f.read()).group(1)
26-
with open(join(CURDIR, 'README.rst')) as f:
26+
with open(join(CURDIR, 'README.md')) as f:
2727
LONG_DESCRIPTION = f.read()
2828

2929
DESCRIPTION = ('Tools to ease creating larger test libraries for '
@@ -37,6 +37,7 @@
3737
license = 'Apache License 2.0',
3838
description = DESCRIPTION,
3939
long_description = LONG_DESCRIPTION,
40+
long_description_content_type = "text/markdown",
4041
keywords = 'robotframework testing testautomation library development',
4142
platforms = 'any',
4243
classifiers = CLASSIFIERS,

0 commit comments

Comments
 (0)