Skip to content
Permalink
6d5cc671f5
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
13 lines (11 sloc) 315 Bytes
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
import numpy as np
ext = [Extension("cython_align",sources=["cython_align.pyx"])]
setup(
name="Cython Align",
cmdclass={'build_ext':build_ext},
include_dirs=[np.get_include()],
ext_modules=ext
)