Skip to content

Commit 9e2f67f

Browse files
committed
adding MANIFEST.in and tuning setup.py
1 parent 93dd3d2 commit 9e2f67f

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include MANIFEST.in LICENSE.txt COPYRIGHT.txt README.rst
2+
include example/examplelibrary.py example/example_tests.robot example/README.rst

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
import re
66

77
NAME = 'robotremoteserver'
8-
CLASSIFIERS = """
8+
CLASSIFIERS = '''
99
Development Status :: 5 - Production/Stable
1010
License :: OSI Approved :: Apache Software License
1111
Operating System :: OS Independent
1212
Programming Language :: Python
1313
Topic :: Software Development :: Testing
14-
""".strip().splitlines()
14+
'''.strip().splitlines()
1515
CURDIR = dirname(abspath(__file__))
1616
with open(join(CURDIR, 'src', NAME+'.py')) as source:
1717
VERSION = re.search("\n__version__ = '(.*)'\n", source.read()).group(1)
@@ -28,7 +28,7 @@
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'},

0 commit comments

Comments
 (0)