I'm currently trying to fix the bioconda recipe for plasflow: bioconda/bioconda-recipes#27766
I noticed that the content of the download available at pypi and the release on github seems to differ. In particular the model dir seems missing in the pypi release.
I guess its because in setup.py
package_data={'models': ['models/*']},
should be
package_data={'plasflow': ['models/*']},
It would be great if you could create a new release fixing this.