node-stratum-pool/python/litecoin_scrypt-master/setup.py
Matthew Little 773ef4c9b2 updated
2014-01-09 13:09:57 -05:00

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])