Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
import numpy as np
ext = [Extension("cython_local_align",sources=["cython_local_align.pyx"])]
setup(
name="Cython Local Align",
cmdclass={'build_ext':build_ext},
include_dirs=[np.get_include()],
ext_modules=ext
)