I am using a python package that requires a .whl
package to get pip installed.
However, each operating system has it's own .whl
file.
Examples
linux
:PyAAF-1.0.0-cp27-cp27m-manylinux1_x86_64.whl
mac
:PyAAF-1.0.0-cp27-none-macosx_10_6_intel.whl
Is there a way to set my requirements.txt
file choose the correct .whl
file according to the currently-running OS?
Thanks