I am using setuptools. Is there a way to use the following commands to use wheels instead of the source?
python setup.py install
In particular, I have a custom package that requires pandas. While pandas installs fine with pip (since it grabs the wheel), pandas will not install when python setup.py starts (due to pandas with missing dependencies on my machine)
Or maybe how other people treat pandas as addiction in projects? Should I include all pandas dependencies in setup.py?
thanks
source share