-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·18 lines (16 loc) · 865 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·18 lines (16 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from distutils.core import setup, Extension
vcash_hash_module = Extension('vcash_hash',
sources = ['vcashmodule.c',
'vcashhash.c',
'sha3/blake.c',
'sha3/whirlpool.c'],
include_dirs=['.', './sha3'])
setup (name = 'vcash_hash',
version = '1.7',
description = 'Binding for Vcash Proof-of-Work hashing (Whirlpoolx & Blake256 8rounds).',
maintainer = 'xCoreDev',
maintainer_email = 'xCore@vchain.info',
url = 'https://github.com/xCoreDev/python-vcash_hash',
download_url = 'https://github.com/xCoreDev/python-vcash_hash/tarball/1.7',
keywords = ['vcash', 'whirlpoolx', 'blake'],
ext_modules = [vcash_hash_module])