This repository has been archived by the owner on Sep 21, 2022. It is now read-only.
forked from wkeeling/selenium-wire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
76 lines (71 loc) · 2.18 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/env python
"""The setup script."""
from setuptools import find_packages, setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
setup(
author="Will Keeling",
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
description="Extends Selenium to give you the ability to inspect requests made by the browser.",
license="MIT",
long_description=readme + '\n\n' + history,
include_package_data=True,
python_requires='>=3.6',
install_requires=[
'blinker>=1.4',
'certifi>=2019.9.11',
"h2>=4.0; python_version>='3.6.0'",
"hyperframe>=6.0; python_version>='3.6.0'",
'kaitaistruct>=0.7',
'pyasn1>=0.3.1',
'pyOpenSSL>=19.1.0',
'pyparsing>=2.4.2',
'pysocks>=1.7.1',
'selenium>=3.4.0',
'wsproto>=0.14',
],
extras_require={
':sys_platform == "win32"': [
'pydivert>=2.0.3',
],
':python_version == "3.6"': [
"dataclasses>=0.7",
],
'dev': [
'coverage',
'flake8',
'gunicorn',
'httpbin',
'mitmproxy', # Needed by the mitmproxy backend and end2end tests
'pre-commit',
'pytest',
'pytest-cov',
'tox',
'twine',
'wheel',
]
},
keywords='selenium-wire',
name='selenium-wire',
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
setup_requires=[],
test_suite='tests.seleniumwire',
tests_require=['pytest'],
url='https://github.com/wkeeling/selenium-wire',
version='4.2.4',
zip_safe=False,
)