commit | aeab5d07c5538f3d8cce817df24199534572b97d | [log] [tgz] |
---|---|---|
author | arithmetic1728 <[email protected]> | Fri Feb 12 11:57:12 2021 -0800 |
committer | GitHub <[email protected]> | Fri Feb 12 11:57:12 2021 -0800 |
tree | fb82ce8af1088c31e7763ba00e14fcd555e06eb5 | |
parent | c556f6fcc131f496ac3ec2ea50f2f61cefc34b9f [diff] [blame] |
fix: add pyopenssl as extra dependency (#697) * fix: add pyopenssl as extra dependency * update
diff --git a/setup.py b/setup.py index 0df0a81..055fcab 100644 --- a/setup.py +++ b/setup.py
@@ -29,7 +29,10 @@ "six>=1.9.0", ) -extras = {"aiohttp": "aiohttp >= 3.6.2, < 4.0.0dev; python_version>='3.6'"} +extras = { + "aiohttp": "aiohttp >= 3.6.2, < 4.0.0dev; python_version>='3.6'", + "pyopenssl": "pyopenssl>=20.0.0", +} with io.open("README.rst", "r") as fh: long_description = fh.read()