I have an app that I want to package which is dependent on protobuf. It is essential that protobuf be installed as such:
pip install protobuf --no-binary=protobuf protobuf
How can I include this inside my setup.py install_requires?
Note: My requirements mandate that this process automatically goes through setup.py.
Thus, I've tried including such things in install_requires or requirements.txt to no luck:
#requirements.txt
protobuf
--no-binary=protobuf
How can I provide the --no-binary=protobuf protobuf (which I know are pip flags) to the installation of protobuf when I'm packaging my app?
Update: What I want is for the protobuf package to be installed the way I mentioned when I install my package this way:
`pip install my_package.whl`