2015-03-06 12:27:11 +00:00
|
|
|
#!/usr/bin/env python
|
2015-05-05 05:50:04 +00:00
|
|
|
import os
|
2015-03-06 12:27:11 +00:00
|
|
|
from distutils.core import setup, Extension
|
2015-05-05 05:50:04 +00:00
|
|
|
sources = [
|
|
|
|
'src/python/core.c',
|
|
|
|
'src/libethash/io.c',
|
|
|
|
'src/libethash/internal.c',
|
|
|
|
'src/libethash/sha3.c']
|
|
|
|
if os.name == 'nt':
|
|
|
|
sources += [
|
|
|
|
'src/libethash/util_win32.c',
|
|
|
|
'src/libethash/io_win32.c',
|
|
|
|
'src/libethash/mmap_win32.c',
|
|
|
|
]
|
|
|
|
else:
|
|
|
|
sources += [
|
|
|
|
'src/libethash/io_posix.c'
|
|
|
|
]
|
|
|
|
depends = [
|
|
|
|
'src/libethash/ethash.h',
|
|
|
|
'src/libethash/compiler.h',
|
|
|
|
'src/libethash/data_sizes.h',
|
|
|
|
'src/libethash/endian.h',
|
|
|
|
'src/libethash/ethash.h',
|
|
|
|
'src/libethash/io.h',
|
|
|
|
'src/libethash/fnv.h',
|
|
|
|
'src/libethash/internal.h',
|
|
|
|
'src/libethash/sha3.h',
|
|
|
|
'src/libethash/util.h',
|
|
|
|
]
|
2015-04-07 11:17:27 +00:00
|
|
|
pyethash = Extension('pyethash',
|
2015-05-05 05:50:04 +00:00
|
|
|
sources=sources,
|
|
|
|
depends=depends,
|
2015-04-07 11:17:27 +00:00
|
|
|
extra_compile_args=["-Isrc/", "-std=gnu99", "-Wall"])
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='pyethash',
|
|
|
|
author="Matthew Wampler-Doty",
|
|
|
|
author_email="matthew.wampler.doty@gmail.com",
|
|
|
|
license='GPL',
|
|
|
|
version='0.1.23',
|
|
|
|
url='https://github.com/ethereum/ethash',
|
|
|
|
download_url='https://github.com/ethereum/ethash/tarball/v23',
|
|
|
|
description=('Python wrappers for ethash, the ethereum proof of work'
|
|
|
|
'hashing function'),
|
|
|
|
ext_modules=[pyethash],
|
|
|
|
)
|