update docs, remove extraneous licence text, sort module names in import statement

closes #46 ?
This commit is contained in:
Zooko O'Whielacronx 2007-05-21 13:42:51 -07:00
parent 930b3e2050
commit 3d1adf6d30
3 changed files with 3 additions and 7 deletions

2
README
View File

@ -148,7 +148,7 @@ There are three ways to do it. Choose one:
You'll need to run "setup.py install" four separate times, one for each of
the four subpackages (allmydata, allmydata.Crypto, foolscap, and zfec). If
you use GNU stow, add the options "--prefix=." and
"--root=/usr/local/stow/${PACKAGE}" to the "setup.py install" command.
"--root=/usr/local/stow/${PACKAGE}" after the "setup.py install" command.
for PACKAGE in zfec Crypto foolscap ; do
cd src/${PACKAGE} && python setup.py install && cd ../..

View File

@ -17,11 +17,6 @@
# If you would like to inquire about a commercial relationship with Allmydata,
# Inc., please contact partnerships@allmydata.com and visit
# http://allmydata.com/.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
# more details.
import re, os.path
from distutils.core import Extension, setup

View File

@ -4,7 +4,8 @@ from twisted.python import log
from twisted.application import service
from twisted.internet import defer
from foolscap import Tub
from allmydata.util import idlib, observer, iputil
from allmydata.util import idlib, iputil, observer
# Just to get their versions:
import allmydata