mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-02-20 17:52:50 +00:00
setup: update some docs, metadata, and docstrings
This commit is contained in:
parent
c740da9b6d
commit
84289b2446
16
Makefile
16
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
|
||||
|
6
setup.py
6
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',
|
||||
|
@ -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__
|
||||
|
Loading…
x
Reference in New Issue
Block a user