diff --git a/.gitignore b/.gitignore index 2ec6c88..a27713e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ # Created by https://www.toptal.com/developers/gitignore/api/python,visualstudiocode,pycharm,macos # Edit at https://www.toptal.com/developers/gitignore?templates=python,visualstudiocode,pycharm,macos - +appium_logs ### macOS ### # General .DS_Store diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..18d976b --- /dev/null +++ b/requirements.txt @@ -0,0 +1,17 @@ +# dev +pylint==2.14.5 +black==22.6.0 + +# lib +pytest==6.2.5 +Appium-Python-Client==2.6.0 +selenium==4.1.0 +opencv-python==4.6.0.66 +geckodriver-autoinstaller==0.1.0 +value==0.1.0 +pytest-xdist==2.5.0 +pytest-testrail==2.9.0 +pure-python-adb==0.3.0.dev0 +webdriver-manager==3.6.3 +numpy==1.21.6 +imutils==0.5.4 \ No newline at end of file diff --git a/setup.py b/setup.py index 35bf052..4791d80 100644 --- a/setup.py +++ b/setup.py @@ -3,22 +3,22 @@ setup( name="py_testui", author="Alvaro Santos Laserna Lopez", - version="1.1.0", + version="1.1.1", url="https://testdevlab.com", packages=find_packages(), install_requires=[ - "pytest", - "Appium-Python-Client", - "selenium", - "opencv-python", - "geckodriver-autoinstaller", - "value", - "pytest-xdist", - "pytest-testrail", - "pure-python-adb", - "webdriver-manager", - "numpy", - "imutils", + "pytest==6.2.5", + "Appium-Python-Client==2.6.0", + "selenium==4.1.0", + "opencv-python==4.6.0.66", + "geckodriver-autoinstaller==0.1.0", + "value==0.1.0", + "pytest-xdist==2.5.0", + "pytest-testrail==2.9.0", + "pure-python-adb==0.3.0.dev0", + "webdriver-manager==3.6.3", + "numpy==1.21.6", + "imutils==0.5.4", ], python_requires=">=3.6", )