-
Notifications
You must be signed in to change notification settings - Fork 215
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
py.typed missing in package #316
Comments
Ah, hmm, it might need to be included in the manifest, actually... |
That might help indeed. I'm just wondering how pip will install the package because currently it is just
So there is currently no folder for |
From some quick testing, adding it in the |
Hm, that's odd, I wouldn't have expected that... Unfortunately I'm not an expert in packaging, does including the file both in the |
I tried and that doesn't work either. This would involve slightly changing the |
Could you please open a PR? |
I see that
schema.py
is typed and it would be great to be able to use that information when running mypy. In order for that to happen, there needs to be apy.typed
file in the package.I see that there was an attempt in including it in the package:
schema/setup.py
Line 26 in df0d03f
It seems to do nothing though when inspecting the
wheel
andtar.gz
(version 0.7.7): only theschema.py
file is stored.I did not try but it might work if the file structure is changed to something like this:
The text was updated successfully, but these errors were encountered: