mirror of https://github.com/Askill/claude.git
8 lines
160 B
Python
8 lines
160 B
Python
|
|
from setuptools import setup
|
||
|
|
from Cython.Build import cythonize
|
||
|
|
import numpy
|
||
|
|
|
||
|
|
setup(
|
||
|
|
include_dirs=[numpy.get_include()],
|
||
|
|
ext_modules = cythonize("*.pyx")
|
||
|
|
)
|