Merge pull request #420 from brandfocus/master

Fix for Newlines are not allowed in setuptools Python 3.9.9
This commit is contained in:
Leon 2021-12-26 12:32:35 +00:00 committed by GitHub
commit 1044a7b767
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -29,6 +29,10 @@ with codecs.open(
except Exception:
raise RuntimeError("unable to determine version")
description = ('Selenium.webdriver.Chrome replacement with compatiblity for Brave, and other Chromium based browsers.',
'Not triggered by CloudFlare/Imperva/hCaptcha and such.',
'NOTE: results may vary due to many factors. No guarantees are given, except for ongoing efforts in understanding detection algorithms.'
)
setup(
name="undetected-chromedriver",
@ -43,11 +47,7 @@ setup(
license="GPL-3.0",
author="UltrafunkAmsterdam",
author_email="info@blackhat-security.nl",
description="""\
selenium.webdriver.Chrome replacement wiht compatiblity for Brave, and other Chromium baed browsers.
not triggered by CloudFlare/Imperva/hCaptcha and such.
NOTE: results may vary due to many factors. No guarantees are given, except for ongoing efforts in understanding detection algorithms.
""",
description=description,
long_description=open(os.path.join(dirname, "README.md"), encoding="utf-8").read(),