]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - src/allmydata/_auto_deps.py
Eliminate dependencies on pywin32, even via Twisted. refs #1274
[tahoe-lafs/tahoe-lafs.git] / src / allmydata / _auto_deps.py
1 # Note: do not import any module from Tahoe-LAFS itself in this
2 # file. Also please avoid importing modules from other packages than
3 # the Python Standard Library if at all possible (exception: we rely
4 # on importing pkg_resources, which is provided by setuptools,
5 # zetuptoolz, distribute, and perhaps in the future distutils2, for
6 # the require_auto_deps() function.)
7
8 install_requires=[
9                   # we require newer versions of setuptools (actually
10                   # zetuptoolz) to build, but can handle older versions to run
11                   "setuptools >= 0.6c6",
12
13                   "zfec >= 1.1.0",
14
15                   # Feisty has simplejson 1.4
16                   "simplejson >= 1.4",
17
18                   "zope.interface",
19                   "Twisted >= 2.4.0",
20
21                   # foolscap < 0.5.1 had a performance bug which spent
22                   # O(N**2) CPU for transferring large mutable files
23                   # of size N.
24                   # foolscap < 0.6 is incompatible with Twisted 10.2.0.
25                   # foolscap 0.6.1 quiets a DeprecationWarning.
26                   "foolscap[secure_connections] >= 0.6.1",
27                   "Nevow >= 0.6.0",
28
29                   # Needed for SFTP. pyasn1 is needed by twisted.conch in Twisted >= 9.0.
30                   # pycrypto 2.2 doesn't work due to https://bugs.launchpad.net/pycrypto/+bug/620253
31                   "pycrypto == 2.0.1, == 2.1, >= 2.3",
32                   "pyasn1 >= 0.0.8a",
33
34                   # http://www.voidspace.org.uk/python/mock/
35                   "mock",
36
37                   # Will be needed to test web apps, but not yet. See #1001.
38                   #"windmill >= 1.3",
39                   ]
40
41 import platform
42 if platform.machine().lower() in ['i386', 'x86_64', 'amd64', 'x86', '']:
43     # pycryptopp v0.5.20 fixes bugs in SHA-256 and AES on x86 or amd64
44     # (from Crypto++ revisions 470, 471, 480, 492).  The '' is there
45     # in case platform.machine is broken and this is actually an x86
46     # or amd64 machine.
47     install_requires.append("pycryptopp >= 0.5.20")
48 else:
49     # pycryptopp v0.5.13 had a new bundled version of Crypto++
50     # (v5.6.0) and a new bundled version of setuptools (although that
51     # shouldn't make any different to users of pycryptopp).
52     install_requires.append("pycryptopp >= 0.5.14")
53
54
55 # Sqlite comes built into Python >= 2.5, and is provided by the "pysqlite"
56 # distribution for Python 2.4.
57 import sys
58 if sys.version_info < (2, 5):
59     # pysqlite v2.0.5 was shipped in Ubuntu 6.06 LTS "dapper" and Nexenta NCP 1.
60     install_requires.append("pysqlite >= 2.0.5")
61
62 if hasattr(sys, 'frozen'): # for py2exe
63     install_requires=[]
64 del sys # clean up namespace
65
66 def require_python_version():
67     import sys, platform
68
69     # we require 2.4.4 on non-UCS-2, non-Redhat builds to avoid <http://www.python.org/news/security/PSF-2006-001/>
70     # we require 2.4.3 on non-UCS-2 Redhat, because 2.4.3 is common on Redhat-based distros and will have patched the above bug
71     # we require at least 2.4.2 in any case to avoid a bug in the base64 module: <http://bugs.python.org/issue1171487>
72     if sys.maxunicode == 65535:
73         if sys.version_info < (2, 4, 2) or sys.version_info[0] > 2:
74             raise NotImplementedError("Tahoe-LAFS current requires Python v2.4.2 or greater "
75                                       "for a UCS-2 build (but less than v3), not %r" %
76                                       (sys.version_info,))
77     elif platform.platform().lower().find('redhat') >= 0:
78         if sys.version_info < (2, 4, 3) or sys.version_info[0] > 2:
79             raise NotImplementedError("Tahoe-LAFS current requires Python v2.4.3 or greater "
80                                       "on Redhat-based distributions (but less than v3), not %r" %
81                                       (sys.version_info,))
82     else:
83         if sys.version_info < (2, 4, 4) or sys.version_info[0] > 2:
84             raise NotImplementedError("Tahoe-LAFS current requires Python v2.4.4 or greater "
85                                       "for a non-UCS-2 build (but less than v3), not %r" %
86                                       (sys.version_info,))
87
88 def require_auto_deps():
89     """
90     The purpose of this function is to raise a pkg_resources exception if any of the
91     requirements can't be imported.  This is just to give earlier and more explicit error
92     messages, as opposed to waiting until the source code tries to import some module from one
93     of these packages and gets an ImportError.  This function gets called from
94     src/allmydata/__init__.py .
95     """
96     require_python_version()
97
98     import pkg_resources
99     for requirement in install_requires:
100         try:
101             pkg_resources.require(requirement)
102         except pkg_resources.DistributionNotFound:
103             # there is no .egg-info present for this requirement, which
104             # either means that it isn't installed, or it is installed in a
105             # way that pkg_resources can't find it (but regular python
106             # might).  There are several older Linux distributions which
107             # provide our dependencies just fine, but they don't ship
108             # .egg-info files. Note that if there *is* an .egg-info file,
109             # but it shows a too-old version, then we'll get a
110             # VersionConflict error instead of DistributionNotFound.
111             pass