distutils

This commit is contained in:
ThomasV 2011-11-10 01:25:03 +01:00
parent eedf13bfdb
commit f0f8d9b1f9
2 changed files with 18 additions and 0 deletions

7
MANIFEST.in Normal file
View File

@ -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 *

11
setup.py Normal file
View File

@ -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"""
)