Yuliang's picture
remove MeshLab dependency with Open3D
fb140f6
raw
history blame
168 Bytes
from setuptools import setup
from Cython.Build import cythonize
import numpy
setup(name='libmesh', ext_modules=cythonize("*.pyx"), include_dirs=[numpy.get_include()])