-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
21 lines (19 loc) · 853 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup, Extension
phi2_hash_module = Extension('phi2_hash',
sources = ['phi2module.c',
'phi2.c',
'sph/aes_helper.c',
'sph/skein.c',
'sph/jh.c',
'sph/cubehash.c',
'sph/streebog.c',
'sph/echo.c',
'lyra2/Lyra2.c'],
include_dirs=['.', './sph', '.lyra2'])
setup (name = 'phi2_hash',
version = '2.0',
description = 'Bindings for phi2 hashing algorithm used by Luxcoin ',
author='216k155',
author_email='[email protected]',
url='https://github.com/216k155/phi2_hashing_module',
ext_modules = [phi2_hash_module])