Skip to content
This repository was archived by the owner on Aug 20, 2024. It is now read-only.

Commit 5a6612e

Browse files
author
Tatu Aalto
committed
Read description from README.rst
1 parent 93be942 commit 5a6612e

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

setup.py

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

13-
DESCRIPTION = """
14-
Selenium2Library 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()
@@ -42,4 +40,4 @@
4240
package_dir = {'' : 'src'},
4341
packages = ['Selenium2Library'],
4442
include_package_data = True,
45-
)
43+
)

0 commit comments

Comments
 (0)