File tree 2 files changed +5
-3
lines changed
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 5
5
import re
6
6
7
7
NAME = 'robotremoteserver'
8
- CLASSIFIERS = """
8
+ CLASSIFIERS = '''
9
9
Development Status :: 5 - Production/Stable
10
10
License :: OSI Approved :: Apache Software License
11
11
Operating System :: OS Independent
12
12
Programming Language :: Python
13
13
Topic :: Software Development :: Testing
14
- """ .strip ().splitlines ()
14
+ ''' .strip ().splitlines ()
15
15
CURDIR = dirname (abspath (__file__ ))
16
16
with open (join (CURDIR , 'src' , NAME + '.py' )) as source :
17
17
VERSION = re .search ("\n __version__ = '(.*)'\n " , source .read ()).group (1 )
28
28
license = 'Apache License 2.0' ,
29
29
description = 'Python Remote Server for Robot Framework' ,
30
30
long_description = README ,
31
- keywords = 'robotframework testing testautomation remote ' ,
31
+ keywords = 'robotframework testing testautomation remoteinterface ' ,
32
32
platforms = 'any' ,
33
33
classifiers = CLASSIFIERS ,
34
34
package_dir = {'' : 'src' },
You can’t perform that action at this time.
0 commit comments