blob: 985c1eb6c746f5f07248ef37f2499136d91c4915 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
from distutils.core import setup, Extension
setup(
name='SyncRNG',
author='Gertjan van den Burg',
version='1.0',
description='A synchronized Tausworthe RNG for Python and R',
license='GPL v2',
package_dir={'': 'Python'},
packages=[''],
ext_modules=[
Extension(
"syncrng",
define_macros=[('TARGETPYTHON', '1')],
sources=["src/syncrng.c"]
)
],
)
|