electrum-bitcoinprivate/setup.py

18 lines
397 B
Python
Raw Normal View History

2011-11-16 02:53:18 -08:00
#!/usr/bin/python
2011-11-29 01:32:56 -08:00
# python setup.py sdist --format=zip,gztar
2011-11-16 02:53:18 -08:00
from distutils.core import setup
2011-12-09 10:54:05 -08:00
from version import ELECTRUM_VERSION as version
2011-11-16 02:53:18 -08:00
setup(name = "Electrum",
2011-12-09 10:54:05 -08:00
version = version,
2011-11-16 02:53:18 -08:00
description = "Lightweight Bitcoin Wallet",
author = "thomasv",
license = "GNU GPLv3",
url = "http://ecdsa/electrum",
long_description = """Lightweight Bitcoin Wallet"""
)