lower maximum shares per node from 5% to 1.67% (from minimum of 10 minutes per share...
[p2pool.git] / litecoin_scrypt / setup.py
1 from distutils.core import setup, Extension
2
3 ltc_scrypt_module = Extension('ltc_scrypt',
4                                sources = ['scryptmodule.c',
5                                           'scrypt.c'],
6                                include_dirs=['.'])
7
8 setup (name = 'ltc_scrypt',
9        version = '1.0',
10        description = 'Bindings for scrypt proof of work used by Litecoin',
11        ext_modules = [ltc_scrypt_module])