forked from BitzenyCoreDevelopers/zny_yescrypt_python3
-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
18 lines (16 loc) · 834 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup, Extension
bell_yespower_module = Extension('bell_yespower',
sources = ['yespower-module.c',
'yespower.c',
'yespower-opt.c',
'sha256.c'
],
extra_compile_args=['-O2', '-funroll-loops', '-fomit-frame-pointer'],
include_dirs=['.'])
setup (name = 'bell_yespower',
version = '1.0.3',
author_email = '[email protected]',
author = 'y-chan',
url = 'https://github.com/bellcoin-electrum/bell_yespower_python3',
description = 'Bindings for yespower-1.0 proof of work used by bellcoin',
ext_modules = [bell_yespower_module])