forked from serhatbolsu/robotframework-appiumlibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·47 lines (43 loc) · 2.1 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
#!/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', 'AppiumLibrary', 'version.py'))
setup(name = 'robotframework-appiumlibrary',
version = VERSION,
description = 'app testing library for Robot Framework',
long_description = open(join(dirname(__file__), 'README.rst')).read(),
author = 'William Zhang, Xie Lieping, Jari Nurminen, Serhat Bolsu',
author_email = '<[email protected]>, <[email protected]>',
url = 'https://github.com/jollychang/robotframework-appiumlibrary',
license = 'Apache License 2.0',
keywords = 'robotframework testing testautomation mobile appium webdriver app',
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',
'robotframework >= 2.6.0',
'docutils >= 0.8.1',
'Appium-Python-Client >= 0.20',
'selenium >= 2.47.1',
'mock >= 1.0.1, <=1.3.0',
'sauceclient >= 0.1.0',
'pytest-cov >= 1.8.1',
'pytest-xdist >= 1.11',
'pytest-pythonpath >= 0.4',
],
py_modules=['ez_setup'],
package_dir = {'' : 'src'},
packages = ['AppiumLibrary','AppiumLibrary.keywords','AppiumLibrary.locators',
'AppiumLibrary.utils'],
include_package_data = True,
)