Update Twisted dependency to include tls and conch extras.

Signed-off-by: Daira Hopwood <daira@jacaranda.org>
This commit is contained in:
Daira Hopwood 2016-03-25 18:33:04 +00:00
parent 23826b0224
commit 1db2419655

View File

@ -63,7 +63,10 @@ install_requires = [
# * The FTP frontend depends on Twisted >= 11.1.0 for # * The FTP frontend depends on Twisted >= 11.1.0 for
# filepath.Permissions # filepath.Permissions
# * Nevow 0.11.1 depends on Twisted >= 13.0.0. # * Nevow 0.11.1 depends on Twisted >= 13.0.0.
"Twisted >= 13.0.0", # * The SFTP frontend and manhole depend on the conch extra.
# * Due to a setuptools bug, we need to declare a dependency on the tls
# extra even though we only depend on it via foolscap.
"Twisted[tls,conch] >= 13.0.0",
# We need Nevow >= 0.11.1 which can be installed using pip. # We need Nevow >= 0.11.1 which can be installed using pip.
"Nevow >= 0.11.1", "Nevow >= 0.11.1",