I have a python module module.pyd that works pretty fine once it is put manually onto the site-packages of python installation folder.
The problem starts when I upload my solution to a cloud enviroment, the buildpack requests that I pass every module as a package to be installed with pip install module
. I ve created a folder with a simple __init__.py file that just imports everything of the module.pyd so that my module is treated like a folder.
Then I read here http://peterdowns.com/posts/first-time-with-pypi.html how to upload my own module and I succeeded, but when I install my module, the module.pyd file is not copied. I also tried to install it direct by the repository pip install git+repository
but the same thing happened.
I have read here https://docs.python.org/2/distutils/sourcedist.html#specifying-the-files-to-distribute that I might have to explicitly say I want to copy *.pyd files in a MANIFEST.in file, I have done it, but it seems not working yet.
I currently using python 2.7.10
I am new on python so I d appreciate you guys help