Skip to content

Commit a10a421

Browse files
author
Tatu Aalto
committed
Added description from README.rst
1 parent 0cd42c8 commit a10a421

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,8 @@
1010
with open(join(CURDIR, 'src', 'SeleniumLibrary', '__init__.py')) as f:
1111
VERSION = re.search("\n__version__ = '(.*)'", f.read()).group(1)
1212

13-
DESCRIPTION = """
14-
SeleniumLibrary is a web testing library for Robot Framework
15-
that utilizes the Selenium tool internally.
16-
"""[1:-1]
13+
with open(join(CURDIR, 'README.rst')) as f:
14+
DESCRIPTION = f.read()
1715

1816
with open(join(CURDIR, 'requirements.txt')) as f:
1917
REQUIREMENTS = f.read().splitlines()

0 commit comments

Comments
 (0)