forked from dashpay/dash_hash
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
22 lines (20 loc) · 1.06 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
from distutils.core import setup, Extension
dash_hash_module = Extension('dash_hash',
sources = ['dashmodule.c',
'dash.c',
'sha3/blake.c',
'sha3/bmw.c',
'sha3/groestl.c',
'sha3/jh.c',
'sha3/keccak.c',
'sha3/skein.c',
'sha3/cubehash.c',
'sha3/echo.c',
'sha3/luffa.c',
'sha3/simd.c',
'sha3/shavite.c'],
include_dirs=['.', './sha3'])
setup (name = 'dash_hash',
version = '1.3.1',
description = 'Binding for Dash X11 proof of work hashing.',
ext_modules = [dash_hash_module])