forked from CounterpartyXCP/counterparty-core
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
229 lines (200 loc) · 8.2 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
#!/usr/bin/env python
from setuptools.command.install import install as _install
from setuptools.command.bdist_egg import bdist_egg as _bdist_egg
from setuptools import setup, find_packages, Command
import inspect
import ssl
import os
import zipfile
import urllib.request
import sys
import shutil
import platform
import warnings
from counterpartylib.lib import config
CURRENT_VERSION = config.VERSION_STRING
APSW_VERSION = "3.33.0-r1"
APSW_SHORT_VERSION = APSW_VERSION.replace('-r1', '')
# NOTE: Why we don't use the the PyPi package:
# <https://github.com/rogerbinns/apsw/issues/66#issuecomment-31310364>
class install_apsw(Command):
description = "Install APSW %s with the appropriate version of SQLite" % APSW_VERSION
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
# In Windows APSW should be installed manually
if os.name == 'nt':
print('To complete the installation you have to install APSW: https://github.com/rogerbinns/apsw/releases')
return
try:
import apsw
if apsw.apswversion() == APSW_VERSION:
print('APSW %s already installed' % apsw.apswversion())
return
else:
print('APSW %s already installed, need %s' % (apsw.apswversion(), APSW_VERSION))
except:
pass
print("downloading apsw.")
with urllib.request.urlopen('https://github.com/rogerbinns/apsw/releases/download/%s/apsw-%s.zip' % (APSW_VERSION, APSW_VERSION)) as u, \
open('apsw-%s.zip' % APSW_VERSION, 'wb') as f:
f.write(u.read())
print("extracting.")
with zipfile.ZipFile('apsw-%s.zip' % APSW_VERSION, 'r') as zip_file:
zip_file.extractall()
executable = sys.executable
if executable is None:
executable = "python"
print("install apsw.")
install_command = ('cd apsw-{version} && {executable} '
'setup.py fetch --version={shortversion} --all build '
'--enable-all-extensions install'.format(executable=executable, version=APSW_VERSION, shortversion=APSW_SHORT_VERSION)
)
os.system(install_command)
print("clean files.")
shutil.rmtree('apsw-%s' % APSW_VERSION)
os.remove('apsw-%s.zip' % APSW_VERSION)
class move_old_db(Command):
description = "Move database from old to new default data directory"
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
import appdirs
old_data_dir = appdirs.user_config_dir(appauthor='Counterparty', appname='counterpartyd', roaming=True)
old_database = os.path.join(old_data_dir, 'counterpartyd.9.db')
old_database_testnet = os.path.join(old_data_dir, 'counterpartyd.9.testnet.db')
new_data_dir = appdirs.user_data_dir(appauthor=config.XCP_NAME, appname=config.APP_NAME, roaming=True)
new_database = os.path.join(new_data_dir, '{}.db'.format(config.APP_NAME))
new_database_testnet = os.path.join(new_data_dir, '{}.testnet.db'.format(config.APP_NAME))
# User have an old version of `counterpartyd`
if os.path.exists(old_data_dir):
# Move database
if not os.path.exists(new_data_dir):
os.makedirs(new_data_dir)
files_to_copy = {
old_database: new_database,
old_database_testnet: new_database_testnet
}
for src_file in files_to_copy:
if os.path.exists(src_file):
dest_file = files_to_copy[src_file]
print('Copy {} to {}'.format(src_file, dest_file))
shutil.copy(src_file, dest_file)
def post_install(cmd):
cmd.run_command('install_apsw')
cmd.run_command('move_old_db')
class install(_install):
user_options = _install.user_options
boolean_options = _install.boolean_options
def initialize_options(self):
_install.initialize_options(self)
#Some of this code taken from https://bitbucket.org/pypa/setuptools/src/4ce518784af886e6977fa2dbe58359d0fe161d0d/setuptools/command/install.py?at=default&fileviewer=file-view-default
@staticmethod
def _called_from_setup(run_frame):
"""
Attempt to detect whether run() was called from setup() or by another
command. If called by setup(), the parent caller will be the
'run_command' method in 'distutils.dist', and *its* caller will be
the 'run_commands' method. If called any other way, the
immediate caller *might* be 'run_command', but it won't have been
called by 'run_commands'. Return True in that case or if a call stack
is unavailable. Return False otherwise.
"""
if run_frame is None:
msg = "Call stack not available. bdist_* commands may fail."
warnings.warn(msg)
if platform.python_implementation() == 'IronPython':
msg = "For best results, pass -X:Frames to enable call stack."
warnings.warn(msg)
return True
res = inspect.getouterframes(run_frame)[2]
caller, = res[:1]
info = inspect.getframeinfo(caller)
caller_module = caller.f_globals.get('__name__', '')
return (
caller_module == 'distutils.dist'
and info.function == 'run_commands'
)
def run(self):
# Explicit request for old-style install? Just do it
if self.old_and_unmanageable or self.single_version_externally_managed:
_install.run(self)
self.execute(post_install, (self,), msg="Running post install tasks")
return
if not self._called_from_setup(inspect.currentframe()):
# Run in backward-compatibility mode to support bdist_* commands.
_install.run(self)
else:
self.do_egg_install()
self.execute(post_install, (self,), msg="Running post install tasks")
class bdist_egg(_bdist_egg):
def run(self):
_bdist_egg.run(self)
self.execute(post_install, (self,), msg="Running post install tasks")
required_packages = [
'appdirs==1.4.0',
'python-dateutil==2.5.3',
'Flask-HTTPAuth==3.1.2',
'Flask==0.11.1',
'colorlog==2.7.0',
'json-rpc==1.10.3',
'pycoin==0.77',
'pycrypto==2.6.1',
'pysha3==0.3',
'pytest==2.9.2',
'pytest-cov==2.2.1',
'python-altcoinlib==0.11.0',
'python-bitcoinlib==0.11.0',
'requests==2.10.0',
'tendo==0.2.8',
'xmltodict==0.10.1',
'cachetools==1.1.6',
'bitstring==3.1.5',
'bson==0.5.10'
]
setup_options = {
'name': 'counterparty-lib',
'version': CURRENT_VERSION,
'author': 'Counterparty Developers',
'author_email': '[email protected]',
'maintainer': 'Counterparty Developers',
'maintainer_email': '[email protected]',
'url': 'http://counterparty.io',
'license': 'MIT',
'description': 'Counterparty Protocol Reference Implementation',
'long_description': open('README.md').read(),
'long_description_content_type': 'text/markdown',
'keywords': 'counterparty, bitcoin',
'classifiers': [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Office/Business :: Financial",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Distributed Computing"
],
'download_url': 'https://github.com/CounterpartyXCP/counterparty-lib/releases/tag/' + CURRENT_VERSION,
'provides': ['counterpartylib'],
'packages': find_packages(),
'zip_safe': False,
'setup_requires': ['appdirs'],
'install_requires': required_packages,
'include_package_data': True,
'cmdclass': {
'install': install,
'move_old_db': move_old_db,
'install_apsw': install_apsw
}
}
setup(**setup_options)