-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
46 lines (41 loc) · 1.75 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
#!/usr/bin/env python
import sys
from os.path import join, dirname
sys.path.append(join(dirname(__file__), 'src'))
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
execfile(join(dirname(__file__), 'src', 'SikuliXRobotLibrary', 'version.py'))
DESCRIPTION = """
SikuliXRobotLibrary is a gui recognition testing library for Robot Framework
that leverages the SikuliX libraries.
"""[1:-1]
setup(name = 'robotframework-sikulixrobotLibrary',
version = VERSION,
description = 'SikuliX testing library for Robot Framework',
long_description = DESCRIPTION,
author = 'Francis John Agunday',
author_email = '<[email protected]> , <[email protected]>',
url = 'https://github.com/jaredfin/SikuliXRobotLibrary',
license = 'None',
keywords = 'robotframework testing testautomation sikuli sikulix',
platforms = 'any',
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Testing"
],
install_requires = [
'decorator >= 3.3.2',
'selenium >= 2.32.0',
'robotframework >= 2.9.1',
'docutils >= 0.8.1'
],
py_modules=['ez_setup'],
package_dir = {'' : 'src'},
packages = ['SikuliXRobotLibrary','SikuliXRobotLibrary.keywords','SikuliXRobotLibrary.locators',
'SikuliXRobotLibrary.utils','SikuliXRobotLibrary.utils.events'],
include_package_data = True,
)