1- download VCForPython27.msi
2- create the setup.py file
from distutils.core import setupfrom Cython.Build import cythonizesetup( name='encrypt', ext_modules=cythonize("use_config.py"), requires=['Cython'])
3- create pyd file
python setup.py build_ext --inplace