Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 9e2f67f

Browse filesBrowse files
committed
adding MANIFEST.in and tuning setup.py
1 parent 93dd3d2 commit 9e2f67f
Copy full SHA for 9e2f67f

File tree

Expand file treeCollapse file tree

2 files changed

+5
-3
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

2 files changed

+5
-3
lines changed
Open diff view settings
Collapse file

‎MANIFEST.in‎

Copy file name to clipboard
+2Lines changed: 2 additions & 0 deletions
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
Collapse file

‎setup.py‎

Copy file name to clipboardExpand all lines: setup.py
+3-3Lines changed: 3 additions & 3 deletions
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.