signal-error-deps:
@echo
@echo
- @echo "ERROR: Not all of Tahoe's dependencies are in place. Please \
-see the README for help on installing dependencies."
+ @echo "ERROR: Not all of Tahoe's dependencies are in place. Please see\
+docs/install.html for help on installing dependencies."
@echo
@echo
exit 1
signal-error-twisted-dep:
@echo
@echo
- @echo "ERROR: Before running \"make build-auto-deps\" you have to ensure that \
-Twisted is installed (including its zope.interface dependency). Twisted and \
-zope.interface are required for the automatic installation of certain other \
-libraries that Tahoe requires). Please see the README for details."
+ @echo "ERROR: Twisted is not installed. Please see docs/install.html for details."
@echo
@echo
exit 1
signal-error-pywin32-dep:
@echo
@echo
- @echo "ERROR: the pywin32 dependency is not in place. Please see the README \
-for help on installing dependencies."
+ @echo "ERROR: the pywin32 dependency is not in place. Please see docs/install.html for\
+help on installing dependencies."
@echo
@echo
exit 1
signal-error-pyopenssl-dep:
@echo
@echo
- @echo "ERROR: the pyOpenSSL dependency is not in place (note that pyOpenSSL required \
-OpenSSL). Please see the README for help on installing dependencies."
+ @echo "ERROR: the pyOpenSSL dependency is not in place (note that pyOpenSSL required OpenSSL). Please see docs/install.html for help on installing dependencies."
@echo
@echo
exit 1
# Allmydata Tahoe -- secure, distributed storage grid
#
-# Copyright (C) 2007 Allmydata, Inc.
+# Copyright (C) 2008 Allmydata, Inc.
#
# This file is part of tahoe.
#
from setuptools import Extension, find_packages, setup
trove_classifiers=[
- "Development Status :: 3 - Alpha",
+ "Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"License :: OSI Approved :: GNU General Public License (GPL)",
setup(name='allmydata-tahoe',
version=verstr,
- description='secure, distributed storage grid',
+ description='secure, decentralized, fault-tolerant filesystem',
long_description=LONG_DESCRIPTION,
author='Allmydata, Inc.',
author_email='tahoe-dev@allmydata.org',
try:
from _version import __version__
except ImportError:
- # We're running in a tree that hasn't run darcsver from the pyutil library,
- # and didn't come with a _version.py, so we don't know what our version
- # is. This should not happen very often.
+ # We're running in a tree that hasn't run "./setup.py darcsver", and didn't
+ # come with a _version.py, so we don't know what our version is. This should
+ # not happen very often.
pass
hush_pyflakes = __version__