You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
292 B
12 lines
292 B
13 years ago
|
#!/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"""
|
||
|
)
|