forked from Electron-Cash/Electron-Cash
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·252 lines (221 loc) · 8.71 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# python setup.py sdist --format=zip,gztar
import argparse
import os
import platform
import sys
import setuptools.command.sdist
from setuptools import setup
with open("README.rst", "r", encoding="utf-8") as f:
long_description = f.read()
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()
with open("contrib/requirements/requirements-binaries.txt") as f:
requirements_binaries = f.read().splitlines()
# We use this convoluted way of importing version.py and constants.py
# because the setup.py scripts tends to be called with python option
# -O, which is not allowed for electrumabc (see comment in module
# electrumabc/bitcoin.py). A regular import would trigger this issue.
dirname = os.path.dirname(os.path.abspath(__file__))
ec_package_dirname = os.path.join(dirname, "electrumabc")
sys.path.insert(0, ec_package_dirname)
def get_version():
import version
return version.PACKAGE_VERSION
def get_constants():
import constants as c
return (c.PROJECT_NAME, c.REPOSITORY_URL, c.SCRIPT_NAME, c.PROJECT_NAME_NO_SPACES)
PROJECT_NAME, REPOSITORY_URL, SCRIPT_NAME, PROJECT_NAME_NO_SPACES = get_constants()
if sys.version_info[:3] < (3, 7):
sys.exit(f"Error: {PROJECT_NAME} requires Python version >= 3.7...")
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/256x256/apps/"),
["icons/electrumABC.png"],
),
(os.path.join(share_dir, "pixmaps/"), ["icons/electrumABC.png"]),
(
os.path.join(share_dir, "icons/hicolor/scaleable/apps/"),
["icons/electrumABC.svg"],
),
# Menu entry
(os.path.join(share_dir, "applications/"), ["electrum-abc.desktop"]),
# App stream (store) metadata
(
os.path.join(share_dir, "metainfo/"),
["org.bitcoinabc.Electrum-ABC.appdata.xml"],
),
]
class MakeAllBeforeSdist(setuptools.command.sdist.sdist):
"""Does some custom stuff before calling super().run()."""
user_options = setuptools.command.sdist.sdist.user_options + [
("disable-secp", None, "Disable libsecp256k1 complilation (default)."),
("enable-secp", None, "Enable libsecp256k1 complilation."),
("disable-zbar", None, "Disable libzbar complilation (default)."),
("enable-zbar", None, "Enable libzbar complilation."),
]
def initialize_options(self):
self.disable_secp = None
self.enable_secp = None
self.disable_zbar = None
self.enable_zbar = None
super().initialize_options()
def finalize_options(self):
if self.enable_secp is None:
self.enable_secp = False
self.enable_secp = not self.disable_secp and self.enable_secp
if self.enable_zbar is None:
self.enable_zbar = False
self.enable_zbar = not self.disable_zbar and self.enable_zbar
super().finalize_options()
def run(self):
"""Run command."""
# self.announce("Running make_locale...")
# 0==os.system("contrib/make_locale") or sys.exit("Could not make locale, aborting")
# self.announce("Running make_packages...")
# 0==os.system("contrib/make_packages") or sys.exit("Could not make locale, aborting")
if self.enable_secp:
self.announce("Running make_secp...")
0 == os.system("contrib/make_secp") or sys.exit(
"Could not build libsecp256k1"
)
if self.enable_zbar:
self.announce("Running make_zbar...")
0 == os.system("contrib/make_zbar") or sys.exit("Could not build libzbar")
super().run()
platform_package_data = {}
if sys.platform in ("linux",):
platform_package_data = {
"electrumabc_gui.qt": ["data/ecsupplemental_lnx.ttf", "data/fonts.xml"],
}
if sys.platform in ("win32", "cygwin"):
platform_package_data = {
"electrumabc_gui.qt": ["data/ecsupplemental_win.ttf"],
}
setup(
cmdclass={
"sdist": MakeAllBeforeSdist,
},
name=PROJECT_NAME_NO_SPACES,
version=get_version(),
install_requires=requirements,
extras_require={
"hardware": requirements_hw,
"gui": requirements_binaries,
"all": requirements_hw + requirements_binaries,
},
packages=[
"electrumabc",
"electrumabc.avalanche",
"electrumabc.qrreaders",
"electrumabc.slp",
"electrumabc.tor",
"electrumabc.utils",
"electrumabc_gui",
"electrumabc_gui.qt",
"electrumabc_gui.qt.avalanche",
"electrumabc_gui.qt.qrreader",
"electrumabc_gui.qt.utils",
"electrumabc_gui.qt.utils.darkdetect",
"electrumabc_plugins",
"electrumabc_plugins.audio_modem",
"electrumabc_plugins.cosigner_pool",
"electrumabc_plugins.email_requests",
"electrumabc_plugins.hw_wallet",
"electrumabc_plugins.keepkey",
"electrumabc_plugins.ledger",
"electrumabc_plugins.trezor",
"electrumabc_plugins.digitalbitbox",
"electrumabc_plugins.virtualkeyboard",
"electrumabc_plugins.satochip",
"electrumabc_plugins.fusion",
],
package_data={
"electrumabc": [
"servers.json",
"servers_testnet.json",
"servers_regtest.json",
"currencies.json",
"www/index.html",
"wordlist/*.txt",
"libsecp256k1*",
"libzbar*",
"locale/*/LC_MESSAGES/electron-cash.mo",
],
"electrumabc_plugins.fusion": ["*.svg", "*.png"],
# On Linux and Windows this means adding electrumabc_gui/qt/data/*.ttf
# On Darwin we don't use that font, so we don't add it to save space.
**platform_package_data,
},
classifiers=[
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable"
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Security :: Cryptography",
"Topic :: Office/Business :: Financial",
],
scripts=[SCRIPT_NAME],
data_files=data_files,
description="Lightweight eCash Wallet",
author=f"The {PROJECT_NAME} Developers",
# author_email=
license="MIT Licence",
url=REPOSITORY_URL,
long_description=long_description,
)