forked from robotframework/PythonRemoteServer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·36 lines (33 loc) · 1.28 KB
/
setup.py
File metadata and controls
executable file
·36 lines (33 loc) · 1.28 KB
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
#!/usr/bin/env python
from distutils.core import setup
from os.path import abspath, dirname, join
import re
NAME = 'robotremoteserver'
CLASSIFIERS = '''
Development Status :: 5 - Production/Stable
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Topic :: Software Development :: Testing
'''.strip().splitlines()
CURDIR = dirname(abspath(__file__))
with open(join(CURDIR, 'src', NAME+'.py')) as source:
VERSION = re.search("\n__version__ = '(.*)'\n", source.read()).group(1)
with open(join(CURDIR, 'README.rst')) as readme:
README = readme.read()
setup(
name = NAME,
version = VERSION,
author = 'Robot Framework Developers',
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 = 'Python Remote Server for Robot Framework',
long_description = README,
keywords = 'robotframework testing testautomation remoteinterface',
platforms = 'any',
classifiers = CLASSIFIERS,
package_dir = {'': 'src'},
py_modules = [NAME],
)