Skip to content

Commit

Permalink
Update required packages to include selenium-wire
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlos Kidman committed Mar 30, 2022
1 parent 972717c commit 0f18a67
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 28 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
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"
Expand Down
55 changes: 28 additions & 27 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
''',
""",
)

0 comments on commit 0f18a67

Please sign in to comment.