forked from pytest-dev/pytest-selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (58 loc) · 2.42 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
from setuptools import setup
setup(
name="pytest-selenium",
use_scm_version=True,
description="pytest plugin for Selenium",
long_description=open("README.rst").read(),
author="Dave Hunt",
author_email="[email protected]",
url="https://github.com/pytest-dev/pytest-selenium",
packages=["pytest_selenium", "pytest_selenium.drivers"],
install_requires=[
"pytest>=3.6",
"pytest-base-url",
"pytest-html>=1.14.0",
"pytest-variables>=1.5.0",
"selenium>=3.0.0",
"requests",
],
entry_points={
"pytest11": [
"selenium = pytest_selenium.pytest_selenium",
"selenium_safety = pytest_selenium.safety",
"browserstack_driver = pytest_selenium.drivers.browserstack",
"crossbrowsertesting_driver = "
"pytest_selenium.drivers.crossbrowsertesting",
"chrome_driver = pytest_selenium.drivers.chrome",
"edge_driver = pytest_selenium.drivers.edge",
"firefox_driver = pytest_selenium.drivers.firefox",
"ie_driver = pytest_selenium.drivers.internet_explorer",
"remote_driver = pytest_selenium.drivers.remote",
"phantomjs_driver = pytest_selenium.drivers.phantomjs",
"safari_driver = pytest_selenium.drivers.safari",
"saucelabs_driver = pytest_selenium.drivers.saucelabs",
"testingbot_driver = pytest_selenium.drivers.testingbot",
"appium_driver = pytest_selenium.drivers.appium",
]
},
setup_requires=["setuptools_scm"],
extras_require={"appium": ["appium-python-client>=0.44"]},
license="Mozilla Public License 2.0 (MPL 2.0)",
keywords="py.test pytest selenium saucelabs browserstack webqa qa",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Utilities",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)