mirror of
https://github.com/vale981/stocproc
synced 2025-03-05 09:41:42 -05:00
8 lines
No EOL
194 B
Python
8 lines
No EOL
194 B
Python
from distutils.core import setup
|
|
from Cython.Build import cythonize
|
|
import numpy as np
|
|
|
|
setup(
|
|
ext_modules = cythonize(["stocproc/stocproc_c.pyx"]),
|
|
include_dirs = [np.get_include()],
|
|
) |