mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
11 lines
293 B
Python
11 lines
293 B
Python
#!/usr/bin/python
|
|
from distutils.core import setup
|
|
|
|
setup(name = "Electrum",
|
|
version = "0.21",
|
|
description = "Lightweight Bitcoin Wallet",
|
|
author = "thomasv",
|
|
license = "GNU GPLv3",
|
|
url = "http://ecdsa/electrum",
|
|
long_description = """Lightweight Bitcoin Wallet"""
|
|
)
|