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

Commit 3eef8de

Browse files
committed
feat: setup.py packages update
1 parent 5d91615 commit 3eef8de

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

AppiumFlutterLibrary/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# -*- coding: utf-8 -*-
2-
VERSION = '1.0.0-alpha'
2+
VERSION = '1.0.0-alpha.1'

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#!/usr/bin/env python
22

33
from os.path import abspath, dirname, join
4-
from setuptools import setup
4+
from setuptools import setup, find_packages
55

66
ROOT = dirname(abspath(__file__))
77

88

99
setup(name='robotframework-appiumflutterlibrary',
10-
version='1.0.0-alpha',
10+
version='1.0.0-alpha.1',
1111
description='Robot Framework Mobile flutter app testing library for Appium Client Android & iOS & Web',
1212
long_description=open(join(ROOT, 'README.md')).read(),
1313
author='Igor Augusto',
@@ -37,5 +37,6 @@
3737
'six >= 1.10.0',
3838
'Appium-Flutter-Finder >= 0.3.0'
3939
],
40+
packages=find_packages(exclude=["tests"]),
4041
include_package_data=True,
4142
)

0 commit comments

Comments
 (0)