pkg_resources.DistributionNotFound: "google-api-core"
My project depends on the following libs:
google-api-python-clientgoogle-auth-httplib2google-auth-oauthlib
Everything works fine unpackaged but google-api-core seems like a missing hidden import in one of these packages. Any ideas on how to make a quick fix?
This is probably caused by py2app not supporting package metadata at all, which pkg_resources needs to find information about packages.
I expect that this will be fixed in the upcoming 0.26 release now that I've fixed #1 and package metadata is included in the app bundle.
Could you test by installing from this repository?
If that doesn't fix the issue: Could you create a small reproducer, or point to a public repository that demonstrates the problem?