forked from dashdot/python-x11_hash
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·16 lines (14 loc) · 730 Bytes
/
setup.py
File metadata and controls
executable file
·16 lines (14 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from distutils.core import setup, Extension
keccak_hash_module = Extension('keccak_hash',
sources = ['keccakmodule.c',
'keccakhash.c',
'sha3/keccak.c'],
include_dirs=['.', './sha3'])
setup (name = 'keccak_hash',
version = '1.4.3',
maintainer = 'rc125',
maintainer_email = 'rc125@protonmail.com',
url = 'https://github.com/rc125/python-keccak_hash',
download_url = 'https://github.com/rc125/python-keccak_hash/archive/1.4.2.tar.gz',
description = 'Binding for keccak proof of work hashing.',
ext_modules = [keccak_hash_module])