Skip to content

Commit

Permalink
Fix for Newlines are not allowed in setuptools Python 3.9.9
Browse files Browse the repository at this point in the history
  • Loading branch information
brandfocus committed Dec 26, 2021
1 parent 33aa8c3 commit 8568c89
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@
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",
Expand All @@ -43,11 +47,7 @@
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(),

Expand Down

0 comments on commit 8568c89

Please sign in to comment.