forked from simpleledger/Electron-Cash-SLP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·142 lines (128 loc) · 5.11 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#!/usr/bin/env python3
# python setup.py sdist --format=zip,gztar
from setuptools import setup
import os
import sys
import platform
import imp
import argparse
with open('contrib/requirements/requirements.txt') as f:
requirements = f.read().splitlines()
with open('contrib/requirements/requirements-hw.txt') as f:
requirements_hw = f.read().splitlines()
version = imp.load_source('version', 'lib/version.py')
if sys.version_info[:3] < (3, 6):
sys.exit("Error: Electron Cash requires Python version >= 3.6...")
data_files = []
if platform.system() in ['Linux', 'FreeBSD', 'DragonFly']:
parser = argparse.ArgumentParser(add_help=False)
parser.add_argument('--user', dest='is_user', action='store_true', default=False)
parser.add_argument('--system', dest='is_user', action='store_false', default=False)
parser.add_argument('--root=', dest='root_path', metavar='dir', default='/')
parser.add_argument('--prefix=', dest='prefix_path', metavar='prefix', nargs='?', const='/', default=sys.prefix)
opts, _ = parser.parse_known_args(sys.argv[1:])
# Use per-user */share directory if the global one is not writable or if a per-user installation
# is attempted
user_share = os.environ.get('XDG_DATA_HOME', os.path.expanduser('~/.local/share'))
system_share = os.path.join(opts.prefix_path, "share")
if not opts.is_user:
# Not neccarily a per-user installation try system directories
if os.access(opts.root_path + system_share, os.W_OK):
# Global /usr/share is writable for us – so just use that
share_dir = system_share
elif not os.path.exists(opts.root_path + system_share) and os.access(opts.root_path, os.W_OK):
# Global /usr/share does not exist, but / is writable – keep using the global directory
# (happens during packaging)
share_dir = system_share
else:
# Neither /usr/share (nor / if /usr/share doesn't exist) is writable, use the
# per-user */share directory
share_dir = user_share
else:
# Per-user installation
share_dir = user_share
data_files += [
# Menu icon
(os.path.join(share_dir, 'icons/hicolor/128x128/apps/'), ['icons/electron-cash.png']),
(os.path.join(share_dir, 'pixmaps/'), ['icons/electron-cash.png']),
# Menu entry
(os.path.join(share_dir, 'applications/'), ['electron-cash.desktop']),
# App stream (store) metadata
(os.path.join(share_dir, 'metainfo/'), ['org.electroncash.ElectronCash.appdata.xml']),
]
platform_package_data = {}
if sys.platform in ('linux'):
platform_package_data = {
'electroncash_gui.qt' : [
'data/ecsupplemental_lnx.ttf',
'data/fonts.xml'
],
}
if sys.platform in ('win32', 'cygwin'):
platform_package_data = {
'electroncash_gui.qt' : [
'data/ecsupplemental_win.ttf'
],
}
setup(
name=os.environ.get('EC_PACKAGE_NAME') or "Electron Cash SLP",
version=os.environ.get('EC_PACKAGE_VERSION') or version.PACKAGE_VERSION,
install_requires=requirements + ['pyqt5'],
extras_require={
'hardware': requirements_hw,
},
packages=[
'electroncash',
'electroncash.locale', # work-around for Android platform limitations
'electroncash.qrreaders',
'electroncash.utils',
'electroncash_gui',
'electroncash_gui.qt',
'electroncash_gui.qt.qrreader',
'electroncash_gui.qt.utils',
'electroncash_gui.qt.utils.darkdetect',
'electroncash_plugins',
'electroncash_plugins.audio_modem',
'electroncash_plugins.cosigner_pool',
'electroncash_plugins.email_requests',
'electroncash_plugins.hw_wallet',
'electroncash_plugins.keepkey',
'electroncash_plugins.labels',
'electroncash_plugins.ledger',
'electroncash_plugins.trezor',
'electroncash_plugins.digitalbitbox',
'electroncash_plugins.virtualkeyboard',
'electroncash_plugins.satochip',
'electroncash_plugins.satochip_2FA',
],
package_dir={
'electroncash': 'lib',
'electroncash_gui': 'gui',
'electroncash_plugins': 'plugins',
},
package_data={
'electroncash': [
'servers.json',
'servers_testnet.json',
'servers_slpdb.json',
'servers_slpdb_testnet.json',
'currencies.json',
'www/index.html',
'wordlist/*.txt',
'libsecp256k1*',
'libzbar*',
'locale/*/LC_MESSAGES/electron-cash.mo',
],
# On Linux and Windows this means adding gui/qt/data/*.ttf
# On Darwin we don't use that font, so we don't add it to save space.
**platform_package_data
},
scripts=['electron-cash'],
data_files=data_files,
description="Lightweight Bitcoin Cash Wallet with SLP Support",
author="Electron Cash LLC",
author_email="jonf@electroncash.org",
license="MIT Licence",
url="http://electroncash.org",
long_description="""Lightweight Bitcoin Cash Wallet with SLP Support"""
)