We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16a2a2a commit 8b756a4Copy full SHA for 8b756a4
setup.py
@@ -23,7 +23,7 @@
23
""".strip().splitlines()
24
with open(join(CURDIR, 'src', 'robotlibcore.py')) as f:
25
VERSION = re.search('\n__version__ = "(.*)"', f.read()).group(1)
26
-with open(join(CURDIR, 'README.rst')) as f:
+with open(join(CURDIR, 'README.md')) as f:
27
LONG_DESCRIPTION = f.read()
28
29
DESCRIPTION = ('Tools to ease creating larger test libraries for '
@@ -37,6 +37,7 @@
37
license = 'Apache License 2.0',
38
description = DESCRIPTION,
39
long_description = LONG_DESCRIPTION,
40
+ long_description_content_type = "text/markdown",
41
keywords = 'robotframework testing testautomation library development',
42
platforms = 'any',
43
classifiers = CLASSIFIERS,
0 commit comments