]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - src/allmydata/_auto_deps.py
6f7d7cf55c0528cd38892823b77ab1d940af92b0
[tahoe-lafs/tahoe-lafs.git] / src / allmydata / _auto_deps.py
1 # Note: please minimize imports in this file. In particular, do not import
2 # any module from Tahoe-LAFS or its dependencies, and do not import any
3 # modules at all at global level. That includes setuptools and pkg_resources.
4 # It is ok to import modules from the Python Standard Library if they are
5 # always available, or the import is protected by try...except ImportError.
6
7 install_requires = [
8     # we require newer versions of setuptools (actually
9     # zetuptoolz) to build, but can handle older versions to run
10     "setuptools >= 0.6c6",
11
12     "zfec >= 1.1.0",
13
14     # Feisty has simplejson 1.4
15     "simplejson >= 1.4",
16
17     # zope.interface 3.6.3 and 3.6.4 are incompatible with Nevow (#1435).
18     "zope.interface <= 3.6.2, >= 3.6.5",
19
20     # On Windows we need at least Twisted 9.0 to avoid an indirect dependency on pywin32.
21     # On Linux we need at least Twisted 10.1.0 for inotify support used by the drop-upload
22     # frontend.
23     # We also need Twisted 10.1 for the FTP frontend in order for Twisted's FTP server to
24     # support asynchronous close.
25     "Twisted >= 10.1.0",
26
27     # foolscap < 0.5.1 had a performance bug which spent
28     # O(N**2) CPU for transferring large mutable files
29     # of size N.
30     # foolscap < 0.6 is incompatible with Twisted 10.2.0.
31     # foolscap 0.6.1 quiets a DeprecationWarning.
32     # pyOpenSSL is required by foolscap for it (foolscap) to provide secure
33     # connections. Foolscap doesn't reliably declare this dependency in a
34     # machine-readable way, so we need to declare a dependency on pyOpenSSL
35     # ourselves. Tahoe-LAFS doesn't *really* depend directly on pyOpenSSL,
36     # so if something changes in the relationship between foolscap and
37     # pyOpenSSL, such as foolscap requiring a specific version of pyOpenSSL,
38     # or foolscap switching from pyOpenSSL to a different crypto library, we
39     # need to update this declaration here.
40     "foolscap >= 0.6.1",
41     "pyOpenSSL",
42
43     "Nevow >= 0.6.0",
44
45     # Needed for SFTP. pyasn1 is needed by twisted.conch in Twisted >= 9.0.
46     # pycrypto 2.2 doesn't work due to https://bugs.launchpad.net/pycrypto/+bug/620253
47     # pycrypto 2.4 doesn't work due to https://bugs.launchpad.net/pycrypto/+bug/881130
48     "pycrypto == 2.1.0, == 2.3, >= 2.4.1",
49     "pyasn1 >= 0.0.8a",
50
51     # http://www.voidspace.org.uk/python/mock/
52     "mock",
53
54     # Will be needed to test web apps, but not yet. See #1001.
55     #"windmill >= 1.3",
56 ]
57
58 # Includes some indirect dependencies, but does not include allmydata.
59 # These are in the order they should be listed by --version, etc.
60 package_imports = [
61     # package name      module name
62     ('foolscap',        'foolscap'),
63     ('pycryptopp',      'pycryptopp'),
64     ('zfec',            'zfec'),
65     ('Twisted',         'twisted'),
66     ('Nevow',           'nevow'),
67     ('zope.interface',  'zope.interface'),
68     ('python',          None),
69     ('platform',        None),
70     ('pyOpenSSL',       'OpenSSL'),
71     ('simplejson',      'simplejson'),
72     ('pycrypto',        'Crypto'),
73     ('pyasn1',          'pyasn1'),
74     ('mock',            'mock'),
75 ]
76
77 def require_more():
78     import platform, sys
79     # pycryptopp-0.6.0 includes ed25519
80     install_requires.append("pycryptopp >= 0.6.0")
81
82     # Sqlite comes built into Python >= 2.5, and is provided by the "pysqlite"
83     # distribution for Python 2.4.
84     try:
85         import sqlite3
86         sqlite3 # hush pyflakes
87         package_imports.append(('sqlite3', 'sqlite3'))
88     except ImportError:
89         # pysqlite v2.0.5 was shipped in Ubuntu 6.06 LTS "dapper" and Nexenta NCP 1.
90         install_requires.append("pysqlite >= 2.0.5")
91         package_imports.append(('pysqlite', 'pysqlite2.dbapi2'))
92
93     # Don't try to get the version number of setuptools in frozen builds, because
94     # that triggers 'site' processing that causes failures. Note that frozen
95     # builds still (unfortunately) import pkg_resources in .tac files, so the
96     # entry for setuptools in install_requires above isn't conditional.
97     if not hasattr(sys, 'frozen'):
98         package_imports.append(('setuptools', 'setuptools'))
99
100 require_more()
101
102 deprecation_messages = [
103     "the sha module is deprecated; use the hashlib module instead",
104     "object.__new__\(\) takes no parameters",
105     "The popen2 module is deprecated.  Use the subprocess module.",
106     "the md5 module is deprecated; use hashlib instead",
107     "twisted.web.error.NoResource is deprecated since Twisted 9.0.  See twisted.web.resource.NoResource.",
108     "the sets module is deprecated",
109 ]
110
111 user_warning_messages = [
112     "Hashing uninitialized InterfaceClass instance",
113     "Reliable disconnection notification requires pywin32 215 or later",
114 ]
115
116 warning_imports = [
117     'nevow',
118     'twisted.persisted.sob',
119     'twisted.python.filepath',
120     'Crypto.Hash.SHA',
121 ]