You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.7 KiB
40 lines
1.7 KiB
""" |
|
|
|
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( |
|
name="undetected-chromedriver", |
|
version="2.1.2", |
|
packages=["undetected_chromedriver"], |
|
install_requires=[ |
|
"selenium", |
|
], |
|
url="https://github.com/ultrafunkamsterdam/undetected-chromedriver", |
|
license="GPL-3.0", |
|
author="UltrafunkAmsterdam", |
|
author_email="info@blackhat-security.nl", |
|
description="""\ |
|
selenium.webdriver.Chrome replacement with focus on stealth. |
|
not triggered by Distil / CloudFlare / Imperva / DataDome / hCaptcha and such. |
|
|
|
NOTE: results may vary due to many factors. No guarantees are given, except for ongoing efforts in understanding detection algorithms. |
|
""", |
|
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", |
|
], |
|
)
|
|
|