forked from serhatbolsu/robotframework-appiumlibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·61 lines (57 loc) · 2.42 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
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python
from os.path import abspath, dirname, join
from setuptools import setup, find_packages
ROOT = dirname(abspath(__file__))
version_file = join(ROOT, 'AppiumLibrary', 'version.py')
exec (compile(open(version_file).read(), version_file, 'exec'))
setup(name='robotframework-appiumlibrary',
version=VERSION,
description='Robot Framework Mobile app testing library for Appium Client Android & iOS & Web',
long_description=open(join(ROOT, 'README.rst')).read(),
author='Serhat Bolsu, William Zhang, Xie Lieping, Jari Nurminen',
author_email='serhatbolsu@gmail.com,jollychang@gmail.com,frankbp@gmail.com',
url='https://github.com/serhatbolsu/robotframework-appiumlibrary',
license='Apache License 2.0',
keywords='robotframework testing testautomation mobile appium webdriver app android ios',
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",
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: Implementation :: CPython',
],
setup_requires=[
"pytest-runner"
],
install_requires=[
'decorator >= 3.3.2',
'robotframework >= 2.6.0',
'docutils >= 0.8.1',
'Appium-Python-Client >= 0.28',
'selenium >= 2.47.1',
'kitchen >= 1.2.4',
'six >= 1.10.0'
],
tests_require=[
'mock >= 2.0.0',
'pytest-cov >= 2.5.1',
'pytest-xdist >= 1.16.0',
'pytest-pythonpath >= 0.7.1',
'pytest >= 3.1.0',
'six >= 1.10.0'
],
packages=find_packages(exclude=["demo", "docs", "tests", ]),
include_package_data=True,
)