We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cd42c8 commit a10a421Copy full SHA for a10a421
setup.py
@@ -10,10 +10,8 @@
10
with open(join(CURDIR, 'src', 'SeleniumLibrary', '__init__.py')) as f:
11
VERSION = re.search("\n__version__ = '(.*)'", f.read()).group(1)
12
13
-DESCRIPTION = """
14
-SeleniumLibrary is a web testing library for Robot Framework
15
-that utilizes the Selenium tool internally.
16
-"""[1:-1]
+with open(join(CURDIR, 'README.rst')) as f:
+ DESCRIPTION = f.read()
17
18
with open(join(CURDIR, 'requirements.txt')) as f:
19
REQUIREMENTS = f.read().splitlines()
0 commit comments