First alpha release of stasher, a python-based Kademlia DHT implementation

specifically created for I2P.

New Files:
 - aum.stasher - a single noderef
 - stasher - wrapper script for starting/stopping/using stasher
 - stasher.py - similar wrapper script for 'doze users
 - src/bencode.py - requisite module
 - src/i2p/stasher.py - the stasher application classes - python module

Modified Files:
 - setup.py - added code to install stasher wrapper
 - src/i2p/__init__.py - added stasher to '__all__', allowing import
This commit is contained in:
aum
2004-08-14 12:58:12 +00:00
committed by zzz
parent 9cc96f45d0
commit 8bd312046d
7 changed files with 4249 additions and 2 deletions

View File

@ -1,15 +1,22 @@
#! /usr/bin/env python
from distutils.core import setup
import os
import os, sys
os.chdir('./src')
if sys.platform == 'win32':
stasherFrontEnd = "..\\stasher.py"
else:
stasherFrontEnd = "../stasher"
setup(name="Python I2P API",
version="0.91",
description="Python Interface to I2P",
author="Connelly Barnes",
author="Connelly Barnes + Aum",
author_email="'Y29ubmVsbHliYXJuZXNAeWFob28uY29t\n'.decode('base64')",
url="http://www.i2p.net/",
packages=['i2p', 'i2p.pylib'],
py_modules=['bencode'],
scripts=[stasherFrontEnd],
)