distutils
authorThomasV <thomasv@gitorious>
Thu, 10 Nov 2011 00:25:03 +0000 (01:25 +0100)
committerThomasV <thomasv@gitorious>
Thu, 10 Nov 2011 00:25:03 +0000 (01:25 +0100)
MANIFEST.in [new file with mode: 0644]
setup.py [new file with mode: 0644]

diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644 (file)
index 0000000..e7e2310
--- /dev/null
@@ -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
new file mode 100644 (file)
index 0000000..0ea530f
--- /dev/null
+++ 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""" 
+)