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.
58 lines
1.5 KiB
58 lines
1.5 KiB
#!/usr/bin/env/python2
|
|
|
|
# python setup.py sdist --format=zip,gztar
|
|
|
|
from setuptools import setup
|
|
import os
|
|
import sys
|
|
import platform
|
|
import imp
|
|
|
|
version = imp.load_source('version', 'lib/version.py')
|
|
|
|
if sys.version_info[:3] < (2, 7, 0):
|
|
sys.exit("Error: Electrum requires Python version >= 2.7.0...")
|
|
|
|
data_files = []
|
|
|
|
if platform.system() in ['Linux', 'FreeBSD', 'DragonFly']:
|
|
usr_share = os.path.join(sys.prefix, "share")
|
|
data_files += [
|
|
(os.path.join(usr_share, 'applications/'), ['electrum.desktop']),
|
|
(os.path.join(usr_share, 'pixmaps/'), ['icons/electrum.png'])
|
|
]
|
|
|
|
setup(
|
|
name="Electrum",
|
|
version=version.ELECTRUM_VERSION,
|
|
install_requires=[
|
|
'slowaes>=0.1a1',
|
|
'ecdsa>=0.9',
|
|
'pbkdf2',
|
|
'requests',
|
|
'qrcode',
|
|
'protobuf',
|
|
'dnspython',
|
|
],
|
|
package_dir={
|
|
'electrum': 'lib',
|
|
'electrum_gui': 'gui',
|
|
'electrum_plugins': 'plugins',
|
|
},
|
|
packages=['electrum','electrum_gui','electrum_gui.qt','electrum_plugins'],
|
|
package_data={
|
|
'electrum': [
|
|
'www/index.html',
|
|
'wordlist/*.txt',
|
|
'locale/*/LC_MESSAGES/electrum.mo',
|
|
]
|
|
},
|
|
scripts=['electrum'],
|
|
data_files=data_files,
|
|
description="Lightweight Bitcoin Wallet",
|
|
author="Thomas Voegtlin",
|
|
author_email="thomasv@electrum.org",
|
|
license="GNU GPLv3",
|
|
url="https://electrum.org",
|
|
long_description="""Lightweight Bitcoin Wallet"""
|
|
)
|
|
|