mirror of
https://github.com/vale981/stocproc
synced 2025-03-05 17:51:42 -05:00
8 lines
194 B
Python
8 lines
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()],
|
||
|
)
|