Skip to content

Commit

Permalink
resolved conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
sandeepsuryaprasad committed Aug 28, 2024
1 parent 26f9aa2 commit d60aa37
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 58 deletions.
47 changes: 47 additions & 0 deletions py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,53 @@
requires = ["setuptools", "setuptools-rust"]
build-backend = "setuptools.build_meta"

[project]
name = "selenium"
version = "4.24.0.dev202407241614"
license = "Apache 2.0"
description = "Official Python bindings for Selenium WebDriver."
readme = "README.rst"
requires-python = "~=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"urllib3[socks]>=1.26,<3",
"trio~=0.17",
"trio-websocket~=0.9",
"certifi>=2021.10.8",
"typing_extensions~=4.9",
"websocket-client~=1.8",
]

[tool.setuptools]
zip-safe = false

[tool.setuptools.packages.find]
include = ["selenium*"]
exclude = ["test*"]
namespace = false

[project.urls]
Repository = "https://github.com/SeleniumHQ/selenium/"
BugTracker = "https://github.com/SeleniumHQ/selenium/issues"
Changelog = "https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES"
Documentation = "https://www.selenium.dev/documentation/overview/"
SourceCode = "https://github.com/SeleniumHQ/selenium/tree/trunk/py"

[tool.pytest.ini_options]
console_output_style = "progress"
faulthandler_timeout = 60
Expand Down
58 changes: 0 additions & 58 deletions py/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,70 +27,12 @@

setup_args = {
'cmdclass': {'install': install},
'name': 'selenium',
'version': "4.24.0.dev202407312116",
'license': 'Apache 2.0',
'description': 'Official Python bindings for Selenium WebDriver.',
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),
'url': 'https://github.com/SeleniumHQ/selenium/',
'project_urls': {
'Bug Tracker': 'https://github.com/SeleniumHQ/selenium/issues',
'Changes': 'https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES',
'Documentation': 'https://www.selenium.dev/documentation/overview/',
'Source Code': 'https://github.com/SeleniumHQ/selenium/tree/trunk/py',
},
'python_requires': '~=3.8',
'classifiers': ['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
'package_dir': {
'selenium': 'selenium',
'selenium.common': 'selenium/common',
'selenium.webdriver': 'selenium/webdriver',
},
'packages': ['selenium',
'selenium.common',
'selenium.webdriver',
'selenium.webdriver.chrome',
'selenium.webdriver.chromium',
'selenium.webdriver.common',
'selenium.webdriver.edge',
'selenium.webdriver.firefox',
'selenium.webdriver.ie',
'selenium.webdriver.remote',
'selenium.webdriver.safari',
'selenium.webdriver.support',
'selenium.webdriver.webkitgtk',
'selenium.webdriver.wpewebkit',
],
'include_package_data': True,
'install_requires': [
"urllib3[socks]>=1.26,<3",
"trio~=0.17",
"trio-websocket~=0.9",
"certifi>=2021.10.8",
"typing_extensions~=4.9",
"websocket-client~=1.8",
],
'rust_extensions': [
RustExtension(
{"selenium-manager": "selenium.webdriver.common.selenium-manager"},
binding=Binding.Exec
)
],
'zip_safe': False
}

setup(**setup_args)

0 comments on commit d60aa37

Please sign in to comment.