commit f0f8d9b1f96c3d859a25564af443e8abe04e97e1
parent eedf13bfdb079371c3e905f7507fa82e42467af2
Author: ThomasV <thomasv@gitorious>
Date: Thu, 10 Nov 2011 01:25:03 +0100
distutils
Diffstat:
2 files changed, 19 insertions(+), 0 deletions(-)
diff --git a/MANIFEST.in b/MANIFEST.in
@@ -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
diff --git a/setup.py b/setup.py
@@ -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"""
+)