1
0
Fork 0
firefox/testing/web-platform/tests/tools/webdriver/setup.py
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

14 lines
606 B
Python

from setuptools import setup, find_packages
setup(name="webdriver",
version="1.0",
description="WebDriver client compatible with "
"the W3C browser automation specification.",
author="Mozilla Engineering Productivity",
author_email="tools@lists.mozilla.org",
license="BSD",
packages=find_packages(),
classifiers=["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent"])