Skip to content

Commit 2ed3564

Browse files
committed
Fixed setup.py
1 parent 5fbc16f commit 2ed3564

File tree

1 file changed

+18
-15
lines changed

1 file changed

+18
-15
lines changed

setup.py

+18-15
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,24 @@
2525
with open(join(CURDIR, 'src', 'robotlibcore.py')) as f:
2626
VERSION = re.search("\n__version__ = '(.*)'", f.read()).group(1)
2727
with open(join(CURDIR, 'README.rst')) as f:
28-
DESCRIPTION = f.read()
28+
LONG_DESCRIPTION = f.read()
2929

30+
DESCRIPTION = ('Tools to ease creating larger test libraries for '
31+
'Robot Framework using Python.')
3032
setup(
31-
name = 'robotframework-pythontlibcore',
32-
version = VERSION,
33-
author = 'Tatu Aalto',
34-
author_email = '[email protected]',
35-
url = 'https://github.com/robotframework/PythonLibCore',
36-
license = 'Apache License 2.0',
37-
description = DESCRIPTION,
38-
keywords = 'robotframework testing testautomation library development',
39-
platforms = 'any',
40-
classifiers = CLASSIFIERS,
41-
python_requires = '>=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4',
42-
package_dir = {'': 'src'},
43-
packages = find_packages('src'),
44-
py_modules = ['robotlibcore'],
33+
name = 'robotframework-pythontlibcore',
34+
version = VERSION,
35+
author = 'Tatu Aalto',
36+
author_email = '[email protected]',
37+
url = 'https://github.com/robotframework/PythonLibCore',
38+
license = 'Apache License 2.0',
39+
description = DESCRIPTION,
40+
long_description = LONG_DESCRIPTION,
41+
keywords = 'robotframework testing testautomation library development',
42+
platforms = 'any',
43+
classifiers = CLASSIFIERS,
44+
python_requires = '>=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4',
45+
package_dir = {'': 'src'},
46+
packages = find_packages('src'),
47+
py_modules = ['robotlibcore'],
4548
)

0 commit comments

Comments
 (0)