Skip to content

Commit

Permalink
Fix setup.py because of README format change
Browse files Browse the repository at this point in the history
  • Loading branch information
aaltat committed Mar 22, 2024
1 parent 16a2a2a commit 8b756a4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
""".strip().splitlines()
with open(join(CURDIR, 'src', 'robotlibcore.py')) as f:
VERSION = re.search('\n__version__ = "(.*)"', f.read()).group(1)
with open(join(CURDIR, 'README.rst')) as f:
with open(join(CURDIR, 'README.md')) as f:
LONG_DESCRIPTION = f.read()

DESCRIPTION = ('Tools to ease creating larger test libraries for '
Expand All @@ -37,6 +37,7 @@
license = 'Apache License 2.0',
description = DESCRIPTION,
long_description = LONG_DESCRIPTION,
long_description_content_type = "text/markdown",
keywords = 'robotframework testing testautomation library development',
platforms = 'any',
classifiers = CLASSIFIERS,
Expand Down

0 comments on commit 8b756a4

Please sign in to comment.