From 84289b24466f0648268e528f2bcc1e10ce22abe8 Mon Sep 17 00:00:00 2001 From: Zooko O'Whielacronx Date: Tue, 22 Jan 2008 10:22:51 -0700 Subject: [PATCH] setup: update some docs, metadata, and docstrings --- Makefile | 16 ++++++---------- setup.py | 6 +++--- src/allmydata/__init__.py | 6 +++--- 3 files changed, 12 insertions(+), 16 deletions(-) diff --git a/Makefile b/Makefile index 60c84ab3..286d4bd7 100644 --- a/Makefile +++ b/Makefile @@ -129,8 +129,8 @@ endif 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 @@ -138,10 +138,7 @@ see the README for help on installing dependencies." 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 @@ -149,8 +146,8 @@ libraries that Tahoe requires). Please see the README for details." 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 @@ -158,8 +155,7 @@ for help on installing dependencies." 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 diff --git a/setup.py b/setup.py index 044605d4..d995a9f6 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ # Allmydata Tahoe -- secure, distributed storage grid # -# Copyright (C) 2007 Allmydata, Inc. +# Copyright (C) 2008 Allmydata, Inc. # # This file is part of tahoe. # @@ -24,7 +24,7 @@ else: 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)", @@ -113,7 +113,7 @@ install_requires=["zfec >= 1.3.0", 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', diff --git a/src/allmydata/__init__.py b/src/allmydata/__init__.py index ba3f840a..e40a3043 100644 --- a/src/allmydata/__init__.py +++ b/src/allmydata/__init__.py @@ -11,9 +11,9 @@ __version__ = "unknown" 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__ -- 2.45.2