forked from bitaps-com/pybgl
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
185 lines (151 loc) · 6.66 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
import errno
import os.path
from setuptools import setup, find_packages, Extension
from setup_tools import *
from distutils.command.build_clib import build_clib as _build_clib
from distutils.command.build_ext import build_ext as _build_ext
class build_clib(_build_clib):
def initialize_options(self):
_build_clib.initialize_options(self)
self.build_flags = None
def finalize_options(self):
_build_clib.finalize_options(self)
if self.build_flags is None:
self.build_flags = {
'include_dirs': [],
'library_dirs': [],
'define': [],
}
def get_source_files(self):
# Ensure library has been downloaded (sdist might have been skipped)
download_library(self)
return [
absolute(os.path.join(root, filename))
for root, _, filenames in os.walk(absolute("libsecp256k1"))
for filename in filenames
]
def build_libraries(self, libraries):
raise Exception("build_libraries")
def check_library_list(self, libraries):
raise Exception("check_library_list")
def get_library_names(self):
return build_flags('libsecp256k1', 'l', os.path.abspath(self.build_temp))
def run(self):
build_temp = os.path.abspath(self.build_temp)
try:
os.makedirs(build_temp)
except OSError as e:
if e.errno != errno.EEXIST:
raise
if not os.path.exists(absolute("libsecp256k1/configure")):
# configure script hasn't been generated yet
autogen = absolute("libsecp256k1/autogen.sh")
os.chmod(absolute(autogen), 0o755)
subprocess.check_call(
[autogen],
cwd=absolute("libsecp256k1"),
)
for filename in [
"libsecp256k1/configure",
"libsecp256k1/build-aux/compile",
"libsecp256k1/build-aux/config.guess",
"libsecp256k1/build-aux/config.sub",
"libsecp256k1/build-aux/depcomp",
"libsecp256k1/build-aux/install-sh",
"libsecp256k1/build-aux/missing",
"libsecp256k1/build-aux/test-driver",
]:
try:
os.chmod(absolute(filename), 0o755)
except OSError as e:
# some of these files might not exist depending on autoconf version
if e.errno != errno.ENOENT:
# If the error isn't "No such file or directory" something
# else is wrong and we want to know about it
raise
cmd = [
absolute('libsecp256k1/configure'),
'--disable-shared',
'--enable-static',
'--disable-dependency-tracking',
'--with-pic',
'--enable-module-recovery',
'--disable-jni',
'--prefix',
os.path.abspath(self.build_clib),
'--enable-experimental',
'--enable-module-ecdh',
'--enable-benchmark=no',
'--enable-endomorphism',
]
log.debug('Running configure: {}'.format(' '.join(cmd)))
subprocess.check_call(cmd, cwd=build_temp)
subprocess.check_call([MAKE], cwd=build_temp)
subprocess.check_call([MAKE, 'install'], cwd=build_temp)
self.build_flags['include_dirs'].extend(build_flags('libsecp256k1', 'I', build_temp))
self.build_flags['library_dirs'].extend(build_flags('libsecp256k1', 'L', build_temp))
class build_ext(_build_ext):
def run(self):
if self.distribution.has_c_libraries():
build_clib = self.get_finalized_command("build_clib")
self.include_dirs.append(
os.path.join(build_clib.build_clib, "include"),
)
self.include_dirs.extend(build_clib.build_flags['include_dirs'])
self.library_dirs.append(
os.path.join(build_clib.build_clib, "lib"),
)
self.library_dirs.extend(build_clib.build_flags['library_dirs'])
self.define = build_clib.build_flags['define']
return _build_ext.run(self)
setup(name='pybgl',
version='3.0.0',
description='Python Bitgesell library',
keywords='bitcoin',
url='https://github.com/bitaps-com/pybgl',
author='Alexsei Karpov',
author_email='[email protected]',
license='GPL-3.0',
# include_package_data=True,
package_data={
'pybgl': ['bip39_word_list/*.txt', 'test/*.txt'],
},
cmdclass={
'build_clib': build_clib,
'build_ext': build_ext,
'egg_info': egg_info,
'sdist': sdist,
'bdist_wheel': bdist_wheel
},
distclass=Distribution,
ext_modules=[Extension("cache_strategies", ["pybgl/cache_strategies/cache.c"]),
Extension("_sha3_hash", ["pybgl/_crypto_c/sha3.c"]),
Extension("_bitarray", ["pybgl/bitarray/_bitarray.c"]),
Extension("_secp256k1", ["pybgl/_secp256k1/module_secp256k1.c"],
include_dirs=["libsecp256k1/include/", "libsecp256k1/src/"]),
Extension("_crypto",
["pybgl/_crypto/module_crypto.cpp",
"pybgl/_crypto/crypto/aes.cpp",
"pybgl/_crypto/crypto/hmac_sha256.cpp",
"pybgl/_crypto/crypto/hmac_sha512.cpp",
"pybgl/_crypto/crypto/sha256.cpp",
"pybgl/_crypto/crypto/sha256_avx2.cpp",
"pybgl/_crypto/crypto/sha256_shani.cpp",
"pybgl/_crypto/crypto/sha256_sse4.cpp",
"pybgl/_crypto/crypto/sha256_sse41.cpp",
"pybgl/_crypto/crypto/sha512.cpp",
"pybgl/_crypto/crypto/compat/glibc_compat.cpp",
"pybgl/_crypto/crypto/compat/glibc_sanity.cpp",
"pybgl/_crypto/crypto/compat/glibcxx_sanity.cpp",
"pybgl/_crypto/crypto/compat/strnlen.cpp",
"pybgl/_crypto/crypto/base58.cpp",
"pybgl/_crypto/crypto/hash.cpp",
"pybgl/_crypto/crypto/uint256.cpp",
"pybgl/_crypto/crypto/utilstrencodings.cpp",
],
extra_compile_args=['-std=c++11'],
include_dirs=["pybgl/_crypto/crypto"])
],
packages=find_packages(exclude=('libsecp256k1')),
test_suite='tests',
zip_safe=False)