Files
pallectrum/setup.py

22 lines
725 B
Python
Raw Normal View History

2011-11-16 13:53:18 +03:00
#!/usr/bin/python
2011-11-29 10:32:56 +01:00
# python setup.py sdist --format=zip,gztar
2011-11-16 13:53:18 +03:00
from distutils.core import setup
2012-05-10 14:38:49 +02:00
from lib.version import ELECTRUM_VERSION as version
2011-11-16 13:53:18 +03:00
setup(name = "Electrum",
2011-12-09 21:54:05 +03:00
version = version,
2012-05-10 17:37:49 +04:00
install_requires = ['slowaes','ecdsa'],
2012-05-10 14:38:49 +02:00
package_dir = {'electrum': 'lib'},
scripts= ['electrum', 'watch_address', 'blocks'],
py_modules = ['electrum.version','electrum.wallet','electrum.interface','electrum.gui','electrum.gui_qt','electrum.icons_rc','electrum.mnemonic','electrum.pyqrnative','electrum.bmp'],
2011-11-16 13:53:18 +03:00
description = "Lightweight Bitcoin Wallet",
author = "thomasv",
license = "GNU GPLv3",
url = "http://ecdsa/electrum",
long_description = """Lightweight Bitcoin Wallet"""
2012-05-10 14:38:49 +02:00
)
2011-11-16 13:53:18 +03:00