2011-01-21 05:36:10 +00:00
|
|
|
# Note: please minimize imports in this file. In particular, do not import
|
|
|
|
# any module from Tahoe-LAFS or its dependencies, and do not import any
|
|
|
|
# modules at all at global level. That includes setuptools and pkg_resources.
|
|
|
|
# It is ok to import modules from the Python Standard Library if they are
|
|
|
|
# always available, or the import is protected by try...except ImportError.
|
|
|
|
|
|
|
|
install_requires = [
|
2011-01-22 01:24:42 +00:00
|
|
|
# we require newer versions of setuptools (actually
|
|
|
|
# zetuptoolz) to build, but can handle older versions to run
|
|
|
|
"setuptools >= 0.6c6",
|
|
|
|
|
2011-01-21 05:36:10 +00:00
|
|
|
"zfec >= 1.1.0",
|
|
|
|
|
|
|
|
# Feisty has simplejson 1.4
|
|
|
|
"simplejson >= 1.4",
|
|
|
|
|
2011-08-15 02:53:47 +00:00
|
|
|
# zope.interface 3.6.3 and 3.6.4 are incompatible with Nevow (#1435).
|
2011-08-17 20:31:34 +00:00
|
|
|
"zope.interface <= 3.6.2, >= 3.6.5",
|
2011-01-21 05:36:10 +00:00
|
|
|
|
2011-07-21 23:36:58 +00:00
|
|
|
# On Windows we need at least Twisted 9.0 to avoid an indirect dependency on pywin32.
|
2011-08-08 23:40:49 +00:00
|
|
|
# On Linux we need at least Twisted 10.1.0 for inotify support used by the drop-upload
|
|
|
|
# frontend.
|
2011-07-21 23:36:58 +00:00
|
|
|
# We also need Twisted 10.1 for the FTP frontend in order for Twisted's FTP server to
|
|
|
|
# support asynchronous close.
|
|
|
|
"Twisted >= 10.1.0",
|
2011-01-21 05:36:10 +00:00
|
|
|
|
|
|
|
# foolscap < 0.5.1 had a performance bug which spent
|
|
|
|
# O(N**2) CPU for transferring large mutable files
|
|
|
|
# of size N.
|
|
|
|
# foolscap < 0.6 is incompatible with Twisted 10.2.0.
|
|
|
|
# foolscap 0.6.1 quiets a DeprecationWarning.
|
2011-07-17 11:42:26 +00:00
|
|
|
# pyOpenSSL is required by foolscap for it (foolscap) to provide secure
|
|
|
|
# connections. Foolscap doesn't reliably declare this dependency in a
|
|
|
|
# machine-readable way, so we need to declare a dependency on pyOpenSSL
|
|
|
|
# ourselves. Tahoe-LAFS doesn't *really* depend directly on pyOpenSSL,
|
|
|
|
# so if something changes in the relationship between foolscap and
|
|
|
|
# pyOpenSSL, such as foolscap requiring a specific version of pyOpenSSL,
|
|
|
|
# or foolscap switching from pyOpenSSL to a different crypto library, we
|
|
|
|
# need to update this declaration here.
|
|
|
|
"foolscap >= 0.6.1",
|
|
|
|
"pyOpenSSL",
|
2011-01-21 05:36:10 +00:00
|
|
|
|
|
|
|
"Nevow >= 0.6.0",
|
|
|
|
|
|
|
|
# Needed for SFTP. pyasn1 is needed by twisted.conch in Twisted >= 9.0.
|
|
|
|
# pycrypto 2.2 doesn't work due to https://bugs.launchpad.net/pycrypto/+bug/620253
|
2011-11-05 02:24:57 +00:00
|
|
|
# pycrypto 2.4 doesn't work due to https://bugs.launchpad.net/pycrypto/+bug/881130
|
2012-01-10 19:57:58 +00:00
|
|
|
"pycrypto == 2.1.0, == 2.3, >= 2.4.1",
|
2011-01-21 05:36:10 +00:00
|
|
|
"pyasn1 >= 0.0.8a",
|
|
|
|
|
|
|
|
# http://www.voidspace.org.uk/python/mock/
|
|
|
|
"mock",
|
|
|
|
|
|
|
|
# Will be needed to test web apps, but not yet. See #1001.
|
|
|
|
#"windmill >= 1.3",
|
|
|
|
]
|
|
|
|
|
|
|
|
# Includes some indirect dependencies, but does not include allmydata.
|
|
|
|
# These are in the order they should be listed by --version, etc.
|
|
|
|
package_imports = [
|
|
|
|
# package name module name
|
|
|
|
('foolscap', 'foolscap'),
|
|
|
|
('pycryptopp', 'pycryptopp'),
|
|
|
|
('zfec', 'zfec'),
|
|
|
|
('Twisted', 'twisted'),
|
|
|
|
('Nevow', 'nevow'),
|
|
|
|
('zope.interface', 'zope.interface'),
|
|
|
|
('python', None),
|
|
|
|
('platform', None),
|
|
|
|
('pyOpenSSL', 'OpenSSL'),
|
|
|
|
('simplejson', 'simplejson'),
|
|
|
|
('pycrypto', 'Crypto'),
|
|
|
|
('pyasn1', 'pyasn1'),
|
|
|
|
('mock', 'mock'),
|
|
|
|
]
|
|
|
|
|
|
|
|
def require_more():
|
|
|
|
import platform, sys
|
2012-03-14 01:09:14 +00:00
|
|
|
# pycryptopp-0.6.0 includes ed25519
|
|
|
|
install_requires.append("pycryptopp >= 0.6.0")
|
2011-01-21 05:36:10 +00:00
|
|
|
|
|
|
|
# Sqlite comes built into Python >= 2.5, and is provided by the "pysqlite"
|
|
|
|
# distribution for Python 2.4.
|
|
|
|
try:
|
|
|
|
import sqlite3
|
|
|
|
sqlite3 # hush pyflakes
|
|
|
|
package_imports.append(('sqlite3', 'sqlite3'))
|
|
|
|
except ImportError:
|
|
|
|
# pysqlite v2.0.5 was shipped in Ubuntu 6.06 LTS "dapper" and Nexenta NCP 1.
|
|
|
|
install_requires.append("pysqlite >= 2.0.5")
|
2011-01-21 07:32:34 +00:00
|
|
|
package_imports.append(('pysqlite', 'pysqlite2.dbapi2'))
|
2011-01-21 05:36:10 +00:00
|
|
|
|
2011-01-22 01:24:42 +00:00
|
|
|
# Don't try to get the version number of setuptools in frozen builds, because
|
|
|
|
# that triggers 'site' processing that causes failures. Note that frozen
|
|
|
|
# builds still (unfortunately) import pkg_resources in .tac files, so the
|
|
|
|
# entry for setuptools in install_requires above isn't conditional.
|
2011-01-21 05:36:10 +00:00
|
|
|
if not hasattr(sys, 'frozen'):
|
|
|
|
package_imports.append(('setuptools', 'setuptools'))
|
|
|
|
|
|
|
|
require_more()
|
|
|
|
|
|
|
|
deprecation_messages = [
|
|
|
|
"the sha module is deprecated; use the hashlib module instead",
|
|
|
|
"object.__new__\(\) takes no parameters",
|
|
|
|
"The popen2 module is deprecated. Use the subprocess module.",
|
|
|
|
"the md5 module is deprecated; use hashlib instead",
|
|
|
|
"twisted.web.error.NoResource is deprecated since Twisted 9.0. See twisted.web.resource.NoResource.",
|
|
|
|
"the sets module is deprecated",
|
|
|
|
]
|
|
|
|
|
2011-08-18 04:07:49 +00:00
|
|
|
user_warning_messages = [
|
|
|
|
"Hashing uninitialized InterfaceClass instance",
|
2012-02-27 19:03:17 +00:00
|
|
|
"Reliable disconnection notification requires pywin32 215 or later",
|
2011-08-18 04:07:49 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
warning_imports = [
|
2011-01-21 05:36:10 +00:00
|
|
|
'nevow',
|
|
|
|
'twisted.persisted.sob',
|
|
|
|
'twisted.python.filepath',
|
|
|
|
'Crypto.Hash.SHA',
|
|
|
|
]
|