The setup.py of my X package uses setuptools to optionally install the additional Y package through the extras_require parameter.
Now package Y has disappeared from PyPi and, as far as I can tell, from the visible Internet. easy_install X[Y] does not work with error: Could not find suitable distribution for Y
However, I still have a local copy of Y tarball. Y is a package with pure Python.
What is the best way to modify setup.py so that this (local?) Is optional?
EDIT: The fix is โโintended to be temporary until I figure out the correct replacement. I do not want to officially start supporting Y :)
Radim source share