Skip to content

Commit f34408e

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents 1e9eeb9 + 34e6c49 commit f34408e

File tree

3 files changed

+43
-0
lines changed

3 files changed

+43
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
MANIFEST
12
.idea
23
atest/results

setup.py

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
#!/usr/bin/env python
2+
3+
from distutils.core import setup
4+
from os.path import abspath, dirname, join
5+
6+
# Get __version__ dynamically
7+
execfile(join(dirname(abspath(__file__)), 'src', 'robotremoteserver.py'))
8+
9+
DESCRIPTION = """
10+
Robot Framework remote servers allow hosting test libraries on different
11+
machines and/or interpreters than Robot Framework itself is running on.
12+
This version is implemented with Python and supports also Jython (JVM) and
13+
IronPython (.NET). Separate implementations exist for other languages.
14+
For more information about the remote library interface in general see
15+
http://code.google.com/p/robotframework/wiki/RemoteLibrary
16+
""".strip()
17+
CLASSIFIERS = """
18+
Development Status :: 5 - Production/Stable
19+
License :: OSI Approved :: Apache Software License
20+
Operating System :: OS Independent
21+
Programming Language :: Python
22+
Topic :: Software Development :: Testing
23+
""".strip().splitlines()
24+
25+
setup(
26+
name = 'robotremoteserver',
27+
version = __version__,
28+
author = 'Robot Framework Developers',
29+
author_email = 'robotframework@gmail.com',
30+
url = 'https://github.com/robotframework/PythonRemoteServer',
31+
license = 'Apache License 2.0',
32+
description = 'Robot Framework remote server',
33+
long_description = DESCRIPTION,
34+
keywords = 'robotframework testing testautomation',
35+
platforms = 'any',
36+
classifiers = CLASSIFIERS,
37+
package_dir = {'': 'src'},
38+
py_modules = ['robotremoteserver']
39+
)

src/robotremoteserver.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
signal = None
2424

2525

26+
__version__ = 'devel'
27+
28+
2629
class RobotRemoteServer(SimpleXMLRPCServer):
2730
allow_reuse_address = True
2831
_generic_exceptions = (AssertionError, RuntimeError, Exception)

0 commit comments

Comments
 (0)