-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update required packages to include selenium-wire
- Loading branch information
Carlos Kidman
committed
Mar 30, 2022
1 parent
972717c
commit 0f18a67
Showing
2 changed files
with
29 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>"] | ||
license = "MIT" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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='[email protected]', | ||
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="[email protected]", | ||
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 | ||
''', | ||
""", | ||
) |