forked from igortavtib/robotframework-appiumflutterlibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (40 loc) · 1.7 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
#!/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, 'AppiumFlutterLibrary', 'version.py')
exec (compile(open(version_file).read(), version_file, 'exec'))
setup(name='robotframework-appiumflutterlibrary',
version=VERSION,
description='Robot Framework Mobile flutter app testing library for Appium Client Android & iOS & Web',
long_description=open(join(ROOT, 'README.rst')).read(),
author='Igor Augusto',
author_email='[email protected]',
url='https://github.com/igortavtib/robotframework-appiumflutterlibrary',
license='Apache License 2.0',
keywords='robotframework flutter testing testautomation mobile appium webdriver app android ios',
platforms='any',
classifiers=[
"Development Status :: 1 - Planning",
"Framework :: Robot Framework :: Library",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
'Topic :: Software Development :: Quality Assurance',
"Topic :: Software Development :: Testing",
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
install_requires=[
'decorator >= 3.3.2',
'robotframework >= 2.6.0',
'docutils >= 0.8.1',
'Appium-Python-Client >= 2.7.0',
'selenium >= 2.47.1',
'kitchen >= 1.2.4',
'six >= 1.10.0',
'Appium-Flutter-Finder >= 0.3.0'
],
packages=find_packages(exclude=["tests"]),
include_package_data=True,
)