forked from ElementsProject/libwally-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
99 lines (86 loc) · 3.13 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
"""setuptools config for wallycore """
from setuptools import setup, Extension
import platform
is_windows = platform.system() == "Windows"
if not is_windows:
# Run the autotools/make build up front to generate our sources,
# then build using the standard Python ext module machinery.
# (Windows requires source generation to be done separately).
import multiprocessing
import os
import subprocess
abs_path = os.path.dirname(os.path.abspath(__file__)) + '/'
def call(cmd):
subprocess.check_call(cmd.split(' '), cwd=abs_path)
call('./tools/cleanup.sh')
call('./tools/autogen.sh')
call('./configure --enable-swig-python --enable-python-manylinux --enable-ecmult-static-precomputation --enable-elements --disable-tests')
call('make -j{}'.format(multiprocessing.cpu_count()))
define_macros=[
('SWIG_PYTHON_BUILD', None),
('WALLY_CORE_BUILD', None),
('HAVE_CONFIG_H', None),
('SECP256K1_BUILD', None),
('BUILD_ELEMENTS', None)
]
if is_windows:
define_macros.append(('USE_ECMULT_STATIC_PRECOMPUTATION', None))
define_macros.append(('ECMULT_WINDOW_SIZE', 16))
include_dirs=[
'./',
'./src',
'./include',
'./src/ccan',
'./src/secp256k1',
'./src/secp256k1/src/'
]
if is_windows:
# Borrowing config from wrap_js
# TODO: Move this to another directory
include_dirs = ['./src/wrap_js/windows_config'] + include_dirs
extra_compile_args = ['-flax-vector-conversions']
wally_ext = Extension(
'_wallycore',
define_macros=define_macros,
include_dirs=include_dirs,
extra_compile_args=extra_compile_args,
sources=[
'src/swig_python/swig_wrap.c' if is_windows else 'src/swig_python/swig_python_wrap.c',
'src/wrap_js/src/combined.c',
'src/wrap_js/src/combined_ccan.c',
'src/wrap_js/src/combined_ccan2.c',
],
)
kwargs = {
'name': 'wallycore',
'version': '0.8.4',
'description': 'libwally Bitcoin library',
'long_description': 'Python bindings for the libwally Bitcoin library',
'url': 'https://github.com/ElementsProject/libwally-core',
'author': 'Jon Griffiths',
'author_email': '[email protected]',
'license': 'MIT',
'zip_safe': False,
'classifiers': [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
'keywords': 'Bitcoin wallet BIP32 BIP38 BIP39 secp256k1',
'project_urls': {
'Documentation': 'https://wally.readthedocs.io/en/latest',
'Source': 'https://github.com/ElementsProject/libwally-core',
'Tracker': 'https://github.com/ElementsProject/libwally-core/issues',
},
'packages': ['wallycore'],
'package_dir': {'': 'src/swig_python'},
'py_modules': ['wallycore'],
'ext_modules': [wally_ext]
}
setup(**kwargs)