From 0f18a679f9a4218fe97965c9933e2f0e2170041b Mon Sep 17 00:00:00 2001 From: Carlos Kidman Date: Wed, 30 Mar 2022 12:18:52 -0600 Subject: [PATCH] Update required packages to include selenium-wire --- pyproject.toml | 2 +- setup.py | 55 +++++++++++++++++++++++++------------------------- 2 files changed, 29 insertions(+), 28 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ac0154b..eaa2fe3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyleniumio" -version = "1.14.4" +version = "1.15.0" description = "The best of Selenium and Cypress in a single Python Package" authors = ["Carlos "] license = "MIT" diff --git a/setup.py b/setup.py index e27747d..254d44f 100644 --- a/setup.py +++ b/setup.py @@ -3,44 +3,45 @@ setup( - name='pyleniumio', + name="pyleniumio", version=app.__version__, packages=find_packages(), include_package_data=True, - url='https://github.com/ElSnoMan/pyleniumio', - license='MIT', - author='Carlos Kidman', - author_email='carlos@qap.dev', - description='The best of Selenium and Cypress in a single Python Package', - long_description=open('README.md').read(), - long_description_content_type='text/markdown', + url="https://github.com/ElSnoMan/pyleniumio", + license="MIT", + author="Carlos Kidman", + author_email="carlos@qap.dev", + description="The best of Selenium and Cypress in a single Python Package", + long_description=open("README.md").read(), + long_description_content_type="text/markdown", install_requires=[ - 'selenium', - 'pytest', - 'pytest-xdist', - 'pytest-parallel', - 'pydantic', - 'pytest-reportportal', - 'Faker', - 'requests', - 'webdriver-manager', - 'click', - 'pyfiglet', - 'axe-selenium-python', + "selenium=4.1.0", + "pytest=6.1.0", + "pytest-xdist=2.4.0", + "pytest-parallel=0.1.1", + "pydantic=1.9.0", + "pytest-reportportal=5.0.12", + "Faker=8.16.0", + "requests=2.27.1", + "webdriver-manager=3.5.4", + "click=7.1.2", + "pyfiglet=0.8.post1", + "axe-selenium-python=2.1.6", + "selenium-wire=4.6.3", ], data_files=[ ( - '', + "", [ - 'pylenium/scripts/pylenium.json', - 'pylenium/scripts/pytest.ini', - 'pylenium/scripts/drag_and_drop.js', - 'pylenium/scripts/load_jquery.js', + "pylenium/scripts/pylenium.json", + "pylenium/scripts/pytest.ini", + "pylenium/scripts/drag_and_drop.js", + "pylenium/scripts/load_jquery.js", ], ) ], - entry_points=''' + entry_points=""" [console_scripts] pylenium=pylenium.scripts.cli:cli - ''', + """, )