diff options
-rw-r--r-- | README.rst | 7 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -22,3 +22,10 @@ Library dependencies Python dependencies ------------------- * See ``pkg/requirements.pip`` + +Extras +------------------- +Using `leap.common.http` needs some extra dependencies (twisted.web >= 14.0.2, +python-service-identity). You can install them by running:: + + pip install leap.common[http] @@ -144,6 +144,6 @@ setup( # needed for leap.common.http # service_identity needed for propper hostname identification, # see http://twistedmatrix.com/documents/current/core/howto/ssl.html - 'Twisted': ["Twisted>=14.0.2", "service_identity", "zope.interface"] + 'http': ["Twisted>=14.0.2", "service_identity", "zope.interface"] }, ) |