|
| 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 | +) |
0 commit comments