]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Add dependency on our fork of txAWS (0.2.1.post5).
authorDaira Hopwood <daira@jacaranda.org>
Fri, 10 Jul 2015 03:20:08 +0000 (04:20 +0100)
committerDaira Hopwood <daira@jacaranda.org>
Tue, 4 Aug 2015 17:00:19 +0000 (18:00 +0100)
Signed-off-by: Daira Hopwood <daira@jacaranda.org>
src/allmydata/_auto_deps.py

index b6f70bf2328e019bcdc1a0f8652d511dcbb47484..75ae0cb26e8c0bf8be92efcbc7bf2c432897f0f5 100644 (file)
@@ -51,6 +51,12 @@ install_requires = [
     "characteristic >= 14.0.0", # latest service-identity depends on this version
     "pyasn1 >= 0.1.8",          # latest pyasn1-modules depends on this version
     "pyasn1-modules >= 0.0.5",  # service-identity depends on this
+
+    # needed for cloud backend
+    "txAWS == 0.2.1.post5",
+    "python-dateutil",
+
+    "six >= 1.4.1",             # latest cryptography depends on this version; txAWS also depends on six
 ]
 
 # Includes some indirect dependencies, but does not include allmydata.
@@ -73,6 +79,9 @@ package_imports = [
     ('service-identity', 'service_identity'),
     ('characteristic',   'characteristic'),
     ('pyasn1-modules',   'pyasn1_modules'),
+    ('txAWS',            'txaws'),
+    ('python-dateutil',  'dateutil'),
+    ('six',              'six'),
 ]
 
 # Dependencies for which we don't know how to get a version number at run-time.
@@ -207,7 +216,6 @@ if _can_use_pyOpenSSL_0_14:
         #
         "cryptography",
         "cffi >= 0.8",          # latest cryptography depends on this version
-        "six >= 1.4.1",         # latest cryptography depends on this version
         "enum34",               # latest cryptography depends on this
         "pycparser",            # cffi depends on this
     ]
@@ -215,7 +223,6 @@ if _can_use_pyOpenSSL_0_14:
     package_imports += [
         ('cryptography',     'cryptography'),
         ('cffi',             'cffi'),
-        ('six',              'six'),
         ('enum34',           'enum'),
         ('pycparser',        'pycparser'),
     ]