Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Cython / tests / build / basic_distutils.srctree
Size: Mime:
PYTHON setup.py build_ext --inplace
PYTHON -c "import a"

######## setup.py ########

from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext

setup(
  cmdclass = {'build_ext': build_ext},
  ext_modules = [Extension("a", ["a.pyx"])],
)

######## a.pyx ########