tdistutils - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit f0f8d9b1f96c3d859a25564af443e8abe04e97e1
DIR parent eedf13bfdb079371c3e905f7507fa82e42467af2
HTML Author: ThomasV <thomasv@gitorious>
Date: Thu, 10 Nov 2011 01:25:03 +0100
distutils
Diffstat:
A MANIFEST.in | 8 ++++++++
A setup.py | 11 +++++++++++
2 files changed, 19 insertions(+), 0 deletions(-)
---
DIR diff --git a/MANIFEST.in b/MANIFEST.in
t@@ -0,0 +1,7 @@
+include
+include client/README client/LICENCE
+include server/README server/LICENCE
+include server/electrum.php
+recursive-include client *.py
+recursive-include server *.py
+recursive-include server/patches *
+\ No newline at end of file
DIR diff --git a/setup.py b/setup.py
t@@ -0,0 +1,11 @@
+#!/usr/bin/python
+from distutils.core import setup
+
+setup(name = "Electrum",
+ version = "0.2",
+ description = "Lightweight Bitcoin Wallet",
+ author = "thomasv",
+ license = "GNU GPLv3",
+ url = "http://ecdsa/electrum",
+ long_description = """Lightweight Bitcoin Wallet"""
+)