blob: f3c23b0bba0ec2e8c37d599338b015a9f8dd8a0f (
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
"""
module1 = Extension('taus',
define_macros = [('TARGETPYTHON', '1')],
sources=['taus.c'])
setup (name = 'Tausworthe RNG',
version = '0.1',
description='The Tausworthe RNG for Python and R',
ext_modules = [module1])
"""
setup(
ext_modules=[Extension("taus",
define_macros=[('TARGETPYTHON', '1')],
sources=["taus.c"])],
)
|