Files
pallectrum/setup.py

12 lines
293 B
Python
Raw Normal View History

2011-11-10 01:25:03 +01:00
#!/usr/bin/python
from distutils.core import setup
setup(name = "Electrum",
2011-11-10 09:37:07 +01:00
version = "0.21",
2011-11-10 01:25:03 +01:00
description = "Lightweight Bitcoin Wallet",
author = "thomasv",
license = "GNU GPLv3",
url = "http://ecdsa/electrum",
long_description = """Lightweight Bitcoin Wallet"""
)