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