forked from Groestlcoin/coinhash
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
79 lines (67 loc) · 3.96 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
from distutils.core import setup, Extension
### Extensions ###
neoscrypt_module = Extension('coinhash.neoscrypt',
sources = ['coinhash/neoscrypt/neoscryptmodule.c',
'coinhash/neoscrypt/neoscrypt.c'],
include_dirs=['coinhash/neoscrypt'])
skeinhash_module = Extension('coinhash.skeinhash',
sources = ['coinhash/skeinhash/skeinmodule.c',
'coinhash/skeinhash/skeinhash.c',
'coinhash/skeinhash/skein.c',
'coinhash/skeinhash/sha2.c'],
include_dirs=['coinhash/skeinhash'],
extra_compile_args=['-O1'])
qubit_hash_module = Extension('coinhash.qubit_hash',
sources = ['coinhash/qubit_hash/qubitmodule.c',
'coinhash/qubit_hash/qubit.c',
'coinhash/qubit_hash/sha3/cubehash.c',
'coinhash/qubit_hash/sha3/echo.c',
'coinhash/qubit_hash/sha3/luffa.c',
'coinhash/qubit_hash/sha3/simd.c',
'coinhash/qubit_hash/sha3/shavite.c'],
include_dirs=['coinhash/qubit_hash', 'coinhash/qubit_hash/sha3'])
groestlcoin_hash_module = Extension('coinhash.groestlcoin_hash',
sources = ['coinhash/groestl/groestlcoinmodule.c',
'coinhash/groestl/groestl.c'],
include_dirs=['coinhash/groestl'])
darkcoin_hash_module = Extension('coinhash.darkcoin_hash',
sources = ['coinhash/darkcoin_hash/darkcoinmodule.c',
'coinhash/darkcoin_hash/darkcoin.c',
'coinhash/darkcoin_hash/sha3/blake.c',
'coinhash/darkcoin_hash/sha3/bmw.c',
'coinhash/darkcoin_hash/sha3/groestl.c',
'coinhash/darkcoin_hash/sha3/jh.c',
'coinhash/darkcoin_hash/sha3/keccak.c',
'coinhash/darkcoin_hash/sha3/skein.c',
'coinhash/darkcoin_hash/sha3/cubehash.c',
'coinhash/darkcoin_hash/sha3/echo.c',
'coinhash/darkcoin_hash/sha3/luffa.c',
'coinhash/darkcoin_hash/sha3/simd.c',
'coinhash/darkcoin_hash/sha3/shavite.c'],
include_dirs=['coinhash/darkcoin_hash', 'coinhash/darkcoin_hash/sha3'])
ltc_scrypt_module = Extension('coinhash.ltc_scrypt',
sources=['coinhash/ltc_scrypt/scryptmodule.c',
'coinhash/ltc_scrypt/scrypt.c'],
include_dirs=['coinhash/ltc_scrypt'])
setup(
name = 'coinhash',
version = '1.1.5',
description = 'Compilation of coin hash algorithms.',
long_description = 'Compilation of hash algorithms used by cryptocurrencies.',
maintainer = 'Tyler Willis',
maintainer_email = '[email protected]',
url = 'https://github.com/mazaclub/coinhash',
keywords = ['cryptocurrency', 'coin', 'scrypt', 'neoscrypt', 'x11', 'qubit', 'skein', 'groestl'],
package_dir = {
'coinhash': 'coinhash'
},
ext_modules = [neoscrypt_module,
skeinhash_module,
qubit_hash_module,
groestlcoin_hash_module,
ltc_scrypt_module,
darkcoin_hash_module],
py_modules = [
'coinhash.__init__'
]
)