-
Notifications
You must be signed in to change notification settings - Fork 112
/
setup.py
68 lines (58 loc) · 1.76 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
#!/usr/bin/python
# 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-DASH 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_dash.desktop']),
(os.path.join(usr_share, 'pixmaps/'), ['icons/electrum_dash.png'])
]
setup(
name="Electrum-DASH",
version=version.ELECTRUM_VERSION,
install_requires=[
'slowaes>=0.1a1',
'ecdsa>=0.9',
'pbkdf2',
'requests',
'qrcode',
'protobuf',
'dnspython',
],
package_dir={
'electrum_dash': 'lib',
'electrum_dash__gui': 'gui',
'electrum_dash_plugins': 'plugins',
},
packages=['electrum_dash','electrum_dash_gui','electrum_dash_gui.qt','electrum_dash_plugins'],
package_data={
'electrum_dash': [
'www/index.html',
'wordlist/*.txt',
'locale/*/LC_MESSAGES/electrum.mo',
],
'electrum_dash_gui': [
"qt/themes/cleanlook/name.cfg",
"qt/themes/cleanlook/style.css",
"qt/themes/sahara/name.cfg",
"qt/themes/sahara/style.css",
"qt/themes/dark/name.cfg",
"qt/themes/dark/style.css",
]
},
scripts=['electrum-dash'],
data_files=data_files,
description="Lightweight Dashpay Wallet",
author="mazaclub",
license="GNU GPLv3",
url="https://electrum.org",
long_description="""Lightweight Dashpay Wallet"""
)