-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (16 loc) · 852 Bytes
/
setup.py
File metadata and controls
18 lines (16 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup, Extension
dpowcoin_yespower_module = Extension('dpowcoin_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 = 'dpowcoin_yespower',
version = '1.0.0',
author_email = 'mraksoll4@gmail.com',
author = 'mraksoll',
url = 'https://github.com/dpowcore-project/dpowcoin_yespower_python3',
description = 'Bindings for yespower-1.0.1 proof of work used by Dpowcoin',
ext_modules = [dpowcoin_yespower_module])