tahoe-lafs/_auto_deps.py
Zooko O'Whielacronx f4f69f4a95 setup: refactor versions-and-paths and use pkg_resources to find them
Using pkg_resources is probably better if it works -- zope.interface doesn't have a __version__ attribute that we can query, but pkg_resources knows zope.interface's version number, for one thing.
This code falls back to the old way -- looking at the __version__ attributes and __file__ attributes -- if the pkg_resources way doesn't answer.
Note that this patch also changes the capitalization of "Nevow", "Twisted", and "pyOpenSSL", and the spelling of "allmydata-tahoe".  These changes are not frivolous: they are reflecting the fact that we are naming Python packages (technically called Python "distributions") instead of Python modules (technically and confusingly called Python "packages") here.  The package ("distribution") is named "allmydata-tahoe".  The module ("package") is named "allmydata".
2009-01-19 15:04:35 -07:00

65 lines
3.3 KiB
Python

install_requires=[
# we require 0.6c8 to build, but can handle older versions to run
"setuptools >= 0.6c6",
# pycryptopp < 0.5 had a bug which, using a Microsoft
# compiler, or using some versions of g++ while linking
# against certain older versions of Crypto++, would cause
# incorrect AES results.
"pycryptopp >= 0.5",
"zfec >= 1.1.0",
# We had a unicode problem with simplejson 1.8.1 on dapper -- see ticket #543,
# but we want to install using Gutsy or Hardy simplejson .deb's if possible --
# see ticket #555. Feisty has simplejson 1.4
"simplejson >= 1.4",
"zope.interface",
"Twisted >= 2.4.0",
"foolscap[secure_connections] >= 0.3.1",
"Nevow >= 0.6.0",
]
import platform
if platform.system() == "Windows":
# Twisted requires pywin32 if it is going to offer process management functionality, or if
# it is going to offer iocp reactor. We currently require process management. It would be
# better if Twisted would declare that it requires pywin32 if it is going to offer process
# management. Then the specification and the evolution of Twisted's reliance on pywin32 can
# be confined to the Twisted setup data, and Tahoe can remain blissfully ignorant about such
# things as if a future version of Twisted requires a different version of pywin32, or if a
# future version of Twisted implements process management without using pywin32 at all,
# etc.. That is twisted ticket #3238 -- http://twistedmatrix.com/trac/ticket/3238 . But
# until Twisted does that, Tahoe needs to be non-ignorant of the following requirement:
install_requires.append('pywin32')
import sys
if hasattr(sys, 'frozen'): # for py2exe
install_requires=[]
def require_auto_deps():
"""
The purpose of this function is to raise a pkg_resources exception if any of the
requirements can't be imported. This is just to give earlier and more explicit error
messages, as opposed to waiting until the source code tries to import some module from one
of these packages and gets an ImportError. This function gets called from
src/allmydata/__init__.py .
"""
import pkg_resources
for requirement in install_requires:
try:
pkg_resources.require(requirement)
except pkg_resources.DistributionNotFound:
# there is no .egg-info present for this requirement, which
# either means that it isn't installed, or it is installed in a
# way that pkg_resources can't find it (but regular python
# might). There are several older Linux distributions which
# provide our dependencies just fine, but they don't ship
# .egg-info files. Note that if there *is* an .egg-info file,
# but it shows a too-old version, then we'll get a
# VersionConflict error instead of DistributionNotFound.
pass
def get_package_versions_from_setuptools():
import pkg_resources
return dict([(p.project_name, (p.version, p.location)) for p in pkg_resources.require('allmydata-tahoe')])