forked from robotframework/PythonRemoteServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·48 lines (42 loc) · 1.66 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
from os.path import abspath, dirname, join
import re
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
NAME = 'robotremoteserver'
CLASSIFIERS = '''
Development Status :: 5 - Production/Stable
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 2
Programming Language :: Python :: 3
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: Jython
Programming Language :: Python :: Implementation :: IronPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Testing
Framework :: Robot Framework
'''.strip().splitlines()
CURDIR = dirname(abspath(__file__))
with open(join(CURDIR, 'src', NAME+'.py')) as source:
VERSION = re.search("\n__version__ = '(.*)'", source.read()).group(1)
with open(join(CURDIR, 'README.rst')) as readme:
README = readme.read()
setup(
name = NAME,
version = VERSION,
author = u'Pekka Kl\xe4rck and contributors',
author_email = 'robotframework@gmail.com',
url = 'https://github.com/robotframework/PythonRemoteServer',
download_url = 'https://pypi.python.org/pypi/robotremoteserver',
license = 'Apache License 2.0',
description = 'Robot Framework remote server implemented with Python',
long_description = README,
keywords = 'robotframework testing testautomation remoteinterface',
platforms = 'any',
classifiers = CLASSIFIERS,
package_dir = {'': 'src'},
py_modules = [NAME],
)