-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·123 lines (113 loc) · 4.3 KB
/
setup.py
File metadata and controls
executable file
·123 lines (113 loc) · 4.3 KB
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
#!/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, 5, 2):
sys.exit("Error: Electron Cash requires Python version >= 3.5.2...")
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']),
]
setup(
name="OpenSwap",
version=version.PACKAGE_VERSION,
install_requires=[
'pyaes>=0.1a1',
'ecdsa>=0.9',
'requests',
'qrcode',
'protobuf',
'dnspython',
'jsonrpclib-pelix',
'PySocks>=1.6.6',
'pyqt5',
],
extras_require={
'hardware': requirements_hw,
},
packages=[
'electroncash',
'electroncash_gui',
'electroncash_gui.qt',
'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',
],
package_dir={
'electroncash': 'lib',
'electroncash_gui': 'gui',
'electroncash_plugins': 'plugins',
},
package_data={
'electroncash': [
'servers.json',
'servers_testnet.json',
'servers_BTC.json',
'servers_BTC_testnet.json',
'checkpoints.json',
'checkpoints_testnet.json',
'currencies.json',
'www/index.html',
'wordlist/*.txt',
'locale/*/LC_MESSAGES/electron-cash.mo',
]
},
scripts=['openswap'],
data_files=data_files,
description="Lightweight Bitcoin Cash Wallet",
author="Jonald Fyookball",
author_email="jonf@electroncash.org",
license="MIT Licence",
url="http://electroncash.org",
long_description="""Lightweight Bitcoin Cash Wallet"""
)