From: forrest Date: Thu, 16 Jun 2011 17:02:06 +0000 (+0000) Subject: setup.py X-Git-Tag: 0.8.2~415 X-Git-Url: https://git.novaco.in/?a=commitdiff_plain;h=504369f5ba507177988a66110e40ce4b72b93f62;hp=6d7be43f88504f499348229c9936c9b78eb2c2ab;p=p2pool.git setup.py git-svn-id: svn://forre.st/p2pool@1353 470744a7-cac9-478e-843e-5ec1b25c69e8 --- diff --git a/p2p.py b/p2p.py index e5e5e11..c0fec4e 100644 --- a/p2p.py +++ b/p2p.py @@ -16,7 +16,7 @@ import util # 1: send entire share (low latency, high bandwidth) class Protocol(bitcoin_p2p.BaseProtocol): - version = 0 + version = 1 sub_version = '' def __init__(self, node): diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..3075478 --- /dev/null +++ b/setup.py @@ -0,0 +1,17 @@ +from distutils.core import setup + +try: + import py2exe +except ImportError: + print "missing py2exe" + + +setup(name='p2pool', + version='1.0', + description='Peer-to-peer Bitcoin mining pool', + author='Forrest Voight', + author_email='forrest@forre.st', + url='http://p2pool.forre.st/', + + console=['main.py'], +)