Fix for Newlines are not allowed in setuptools Python 3.9.9

This commit is contained in:
brandfocus 2021-12-26 11:33:37 +00:00
parent 33aa8c3905
commit 8568c8946d
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(),