aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/ethereum/ethash/setup.py
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-04-07 19:17:27 +0800
committerobscuren <geffobscura@gmail.com>2015-04-07 19:17:27 +0800
commit01b2c90179ff82e4610745aea0e3e3ca53756305 (patch)
treefe6545760935932dc14f9c1d61864e30277f1589 /Godeps/_workspace/src/github.com/ethereum/ethash/setup.py
parentc756633fb7f39caa4f0e28aab58c7393c8dae9b1 (diff)
downloadgo-tangerine-01b2c90179ff82e4610745aea0e3e3ca53756305.tar
go-tangerine-01b2c90179ff82e4610745aea0e3e3ca53756305.tar.gz
go-tangerine-01b2c90179ff82e4610745aea0e3e3ca53756305.tar.bz2
go-tangerine-01b2c90179ff82e4610745aea0e3e3ca53756305.tar.lz
go-tangerine-01b2c90179ff82e4610745aea0e3e3ca53756305.tar.xz
go-tangerine-01b2c90179ff82e4610745aea0e3e3ca53756305.tar.zst
go-tangerine-01b2c90179ff82e4610745aea0e3e3ca53756305.zip
Updated ethash
Diffstat (limited to 'Godeps/_workspace/src/github.com/ethereum/ethash/setup.py')
-rw-r--r--Godeps/_workspace/src/github.com/ethereum/ethash/setup.py63
1 files changed, 32 insertions, 31 deletions
diff --git a/Godeps/_workspace/src/github.com/ethereum/ethash/setup.py b/Godeps/_workspace/src/github.com/ethereum/ethash/setup.py
index 29d6ad6d2..6a6b93839 100644
--- a/Godeps/_workspace/src/github.com/ethereum/ethash/setup.py
+++ b/Godeps/_workspace/src/github.com/ethereum/ethash/setup.py
@@ -1,33 +1,34 @@
#!/usr/bin/env python
from distutils.core import setup, Extension
-
-pyethash = Extension('pyethash',
- sources = [
- 'src/python/core.c',
- 'src/libethash/util.c',
- 'src/libethash/internal.c',
- 'src/libethash/sha3.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/fnv.h',
- 'src/libethash/internal.h',
- 'src/libethash/sha3.h',
- 'src/libethash/util.h'
- ],
- extra_compile_args = ["-Isrc/", "-std=gnu99", "-Wall"])
-
-setup (
- name = 'pyethash',
- author = "Matthew Wampler-Doty",
- author_email = "matthew.wampler.doty@gmail.com",
- license = 'GPL',
- version = '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],
- )
+
+pyethash = Extension('pyethash',
+ sources=[
+ 'src/python/core.c',
+ 'src/libethash/util.c',
+ 'src/libethash/internal.c',
+ 'src/libethash/sha3.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/fnv.h',
+ 'src/libethash/internal.h',
+ 'src/libethash/sha3.h',
+ 'src/libethash/util.h'
+ ],
+ 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],
+)