File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1+ include MANIFEST.in LICENSE.txt COPYRIGHT.txt README.rst
2+ include example/examplelibrary.py example/example_tests.robot example/README.rst
Original file line number Diff line number Diff line change 55import re
66
77NAME = 'robotremoteserver'
8- CLASSIFIERS = """
8+ CLASSIFIERS = '''
99Development Status :: 5 - Production/Stable
1010License :: OSI Approved :: Apache Software License
1111Operating System :: OS Independent
1212Programming Language :: Python
1313Topic :: Software Development :: Testing
14- """ .strip ().splitlines ()
14+ ''' .strip ().splitlines ()
1515CURDIR = dirname (abspath (__file__ ))
1616with open (join (CURDIR , 'src' , NAME + '.py' )) as source :
1717 VERSION = re .search ("\n __version__ = '(.*)'\n " , source .read ()).group (1 )
2828 license = 'Apache License 2.0' ,
2929 description = 'Python Remote Server for Robot Framework' ,
3030 long_description = README ,
31- keywords = 'robotframework testing testautomation remote ' ,
31+ keywords = 'robotframework testing testautomation remoteinterface ' ,
3232 platforms = 'any' ,
3333 classifiers = CLASSIFIERS ,
3434 package_dir = {'' : 'src' },
You can’t perform that action at this time.
0 commit comments