Installing Platform-specific Dependencies Through Pip
I'm using LDTP in my tests and it comes as two different packages for two different platforms: PyAtom on Mac OS; LDTP on Linux. It so happens, that both of them has platform-spec
maybe you can create a file for each platform requirements:
requirements-windows.txt
requirements-linux.txt
requirements-mac.txt
and then run for example:
pip install -r requirements-mac.txt
if you like...
You may like these posts
Post a Comment for "Installing Platform-specific Dependencies Through Pip"