blob: 1bbb1c8afcc7f1e0c03048f07676b5da249d5497 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
from distutils.core import setup
from distutils.extension import Extension
from Cython.Build import cythonize
import numpy
ext = Extension(
"*",
["analytics/*.pyx"],
include_dirs=[numpy.get_include()],
)
ext = cythonize([ext],
nthreads=2
)
setup(
name="analytics",
packages=["analytics"],
ext_modules=ext,
)
|