-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 807 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, Extension
allium_hash_module = Extension('_allium_hash',
sources = [
'lyra2re2module.c',
'Lyra2RE.c',
'Sponge.c',
'Lyra2.c',
'sha3/blake.c',
'sha3/groestl.c',
'sha3/keccak.c',
'sha3/cubehash.c',
'sha3/bmw.c',
'sha3/skein.c'],
include_dirs=['.', './sha3'])
setup (name = 'allium_hash',
version = '1.0.5',
author_email = 'ryan@rshaw.me',
author = 'Ryan Shaw',
url = 'https://github.com/ryan-shaw/allium-hash-python',
description = 'Bindings for Allium proof of work used by Garlicoin',
ext_modules = [allium_hash_module])