12 lines
425 B
Python
12 lines
425 B
Python
from distutils.core import setup, Extension
|
|
|
|
ltc_scrypt_module = Extension('ltc_scrypt',
|
|
sources = ['scryptmodule.c',
|
|
'scrypt.c'],
|
|
include_dirs=['.'])
|
|
|
|
setup (name = 'ltc_scrypt',
|
|
version = '1.0',
|
|
description = 'Bindings for scrypt proof of work used by Litecoin',
|
|
ext_modules = [ltc_scrypt_module])
|