forked from moocowmoo/x11_hash
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·23 lines (20 loc) · 970 Bytes
/
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
from distutils.core import setup, Extension
x11_hash_module = Extension('x11_hash',
sources = ['x11module.c',
'x11.c',
'sha3/blake.c',
'sha3/bmw.c',
'sha3/groestl.c',
'sha3/skein.c',
'sha3/jh.c',
'sha3/keccak.c',
'sha3/luffa.c',
'sha3/cubehash.c',
'sha3/shavite.c',
'sha3/simd.c',
'sha3/echo.c'],
include_dirs=['.', './sha3'])
setup (name = 'x11_hash',
version = '1.0',
description = 'x11 hashing module for python',
ext_modules = [x11_hash_module])