2019-12-22 05:50:09 -07:00
|
|
|
"""
|
|
|
|
|
|
|
|
888 888 d8b
|
|
|
|
888 888 Y8P
|
|
|
|
888 888
|
|
|
|
.d8888b 88888b. 888d888 .d88b. 88888b.d88b. .d88b. .d88888 888d888 888 888 888 .d88b. 888d888
|
|
|
|
d88P" 888 "88b 888P" d88""88b 888 "888 "88b d8P Y8b d88" 888 888P" 888 888 888 d8P Y8b 888P"
|
|
|
|
888 888 888 888 888 888 888 888 888 88888888 888 888 888 888 Y88 88P 88888888 888
|
|
|
|
Y88b. 888 888 888 Y88..88P 888 888 888 Y8b. Y88b 888 888 888 Y8bd8P Y8b. 888
|
|
|
|
"Y8888P 888 888 888 "Y88P" 888 888 888 "Y8888 "Y88888 888 888 Y88P "Y8888 888 88888888
|
|
|
|
|
|
|
|
BY ULTRAFUNKAMSTERDAM (https://github.com/ultrafunkamsterdam)"""
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
2020-09-03 14:12:09 -06:00
|
|
|
name="undetected-chromedriver",
|
2021-03-25 03:23:32 -06:00
|
|
|
version="2.2.1",
|
2020-09-03 14:12:09 -06:00
|
|
|
packages=["undetected_chromedriver"],
|
|
|
|
install_requires=["selenium",],
|
2020-10-14 03:17:00 -06:00
|
|
|
url="https://github.com/ultrafunkamsterdam/undetected-chromedriver",
|
2020-09-03 14:12:09 -06:00
|
|
|
license="GPL-3.0",
|
|
|
|
author="UltrafunkAmsterdam",
|
|
|
|
author_email="info@blackhat-security.nl",
|
2021-01-17 09:36:54 -07:00
|
|
|
description="""\
|
2021-01-16 22:11:11 -07:00
|
|
|
selenium.webdriver.Chrome replacement with focus on stealth.
|
|
|
|
not triggered by Distil / CloudFlare / Imperva / DataDome / hCaptcha and such.
|
2021-01-17 09:36:54 -07:00
|
|
|
|
2021-01-16 22:11:11 -07:00
|
|
|
NOTE: results may vary due to many factors. No guarantees are given, except for ongoing efforts in understanding detection algorithms.
|
|
|
|
""",
|
2020-09-03 14:12:09 -06:00
|
|
|
long_description=open("README.md").read(),
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
classifiers=[
|
|
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
2019-12-22 05:50:09 -07:00
|
|
|
],
|
|
|
|
)
|
2021-01-17 09:36:54 -07:00
|
|
|
|