From 5858ce4545dadc3c1645e27325ce906156e4bf8b Mon Sep 17 00:00:00 2001 From: AlanCoding Date: Fri, 12 Apr 2019 11:04:06 -0400 Subject: [PATCH] Twisted tls extras are required by default --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 64e94f1..8144eca 100755 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup( package_dir={"twisted": "daphne/twisted"}, packages=find_packages() + ["twisted.plugins"], include_package_data=True, - install_requires=["twisted>=18.7", "autobahn>=0.18", "asgiref~=3.0"], + install_requires=["twisted[tls]>=18.7", "autobahn>=0.18", "asgiref~=3.0"], setup_requires=["pytest-runner"], extras_require={ "tests": ["hypothesis~=3.88", "pytest~=3.10", "pytest-asyncio~=0.8"]