Paddle whl package should put files under platlib than purelib
Created by: typhoonzero
Related https://github.com/PaddlePaddle/Paddle/issues/4050
In PEP427, directory purelib
in a wheel package means pure python libs, but currently we put .so
files into this directory too.
Should add ext_modules
argument in setup.py
to cheat setuptools
so that the files are installed in platlib
.