Under https://pypi.org/project/future/#files. I see that there is a tar gz file. Having a wheel built and uploaded would also help. Relative imports in setup.py would make execution of it complain with modules `src.future` not being found. ``` /some/different/path/python setup.py install ``` Error: ``` import src.future ModuleNotFoundError: No module named 'src' ```` I found this issue on windows, and got around it by manually building a wheel myself, and installing the wheel through pip.