|
25 | 25 | with open(join(CURDIR, 'src', 'robotlibcore.py')) as f: |
26 | 26 | VERSION = re.search("\n__version__ = '(.*)'", f.read()).group(1) |
27 | 27 | with open(join(CURDIR, 'README.rst')) as f: |
28 | | - DESCRIPTION = f.read() |
| 28 | + LONG_DESCRIPTION = f.read() |
29 | 29 |
|
| 30 | +DESCRIPTION = ('Tools to ease creating larger test libraries for ' |
| 31 | + 'Robot Framework using Python.') |
30 | 32 | setup( |
31 | | - name = 'robotframework-pythontlibcore', |
32 | | - version = VERSION, |
33 | | - author = 'Tatu Aalto', |
34 | | - author_email = 'aalto.tatu@gmail.com', |
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 = 'aalto.tatu@gmail.com', |
| 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'], |
45 | 48 | ) |
0 commit comments