Skip to content
This repository was archived by the owner on Nov 23, 2023. It is now read-only.

Commit aa5e7bb

Browse files
committed
feat: Initial project configs
1 parent 7f95497 commit aa5e7bb

File tree

3 files changed

+96
-0
lines changed

3 files changed

+96
-0
lines changed

.gitignore

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
__pycache__/
2+
*.py[cod]
3+
4+
# C extensions
5+
*.so
6+
7+
# Packages
8+
*.egg
9+
*.egg-info
10+
dist
11+
build
12+
eggs
13+
parts
14+
bin
15+
var
16+
sdist
17+
develop-eggs
18+
.installed.cfg
19+
lib
20+
lib64
21+
22+
# Installer logs
23+
pip-log.txt
24+
25+
# Unit test / coverage reports
26+
.coverage
27+
.tox
28+
nosetests.xml
29+
30+
# Translations
31+
*.mo
32+
33+
# PyCharm
34+
.idea
35+
36+
# Mr Developer
37+
.mr.developer.cfg
38+
.project
39+
.pydevproject
40+
VENV
41+
log.html
42+
output.xml
43+
report.html
44+
*-screenshot-*.png
45+
demo/test_doubandaily.txt
46+
htmlcov/
47+
run.sh
48+
# for eclipse
49+
.settings
50+
.eggs/
51+
.cache/
52+
venv*/

AppiumFlutterLibrary/version.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# -*- coding: utf-8 -*-
2+
VERSION = '1.6.3'

setup.py

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
#!/usr/bin/env python
2+
3+
from os.path import abspath, dirname, join
4+
from setuptools import setup
5+
6+
ROOT = dirname(abspath(__file__))
7+
8+
version_file = join(ROOT, 'AppiumFlutterLibrary', 'version.py')
9+
exec (compile(open(version_file).read(), version_file, 'exec'))
10+
11+
setup(name='robotframework-appiumflutterlibrary',
12+
version=VERSION,
13+
description='Robot Framework Mobile flutter app testing library for Appium Client Android & iOS & Web',
14+
long_description=open(join(ROOT, 'README.md')).read(),
15+
author='Igor Augusto',
16+
author_email='igortavtib@gmail.com',
17+
url='https://github.com/igortavtib/robotframework-appiumflutterlibrary',
18+
license='Apache License 2.0',
19+
keywords='robotframework flutter testing testautomation mobile appium webdriver app android ios',
20+
platforms='any',
21+
classifiers=[
22+
"Development Status :: 5 - Production/Stable",
23+
"License :: OSI Approved :: Apache Software License",
24+
"Operating System :: OS Independent",
25+
"Programming Language :: Python",
26+
'Topic :: Software Development :: Quality Assurance',
27+
"Topic :: Software Development :: Testing",
28+
'Programming Language :: Python',
29+
'Programming Language :: Python :: 3.7',
30+
'Programming Language :: Python :: 3.8',
31+
],
32+
install_requires=[
33+
'decorator >= 3.3.2',
34+
'robotframework >= 2.6.0',
35+
'docutils >= 0.8.1',
36+
'Appium-Python-Client >= 1.1.0',
37+
'selenium >= 2.47.1',
38+
'kitchen >= 1.2.4',
39+
'six >= 1.10.0'
40+
],
41+
include_package_data=True,
42+
)

0 commit comments

Comments
 (0)