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
|
2011-12-09 21:54:05 +03:00
|
|
|
from 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,
|
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"""
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|