-
Notifications
You must be signed in to change notification settings - Fork 122
Include typing information during packaging #579
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
Conversation
@duckontheweb Python packaging is not my forte, but this seems to work based on my testing. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for this @cuttlefish!
Based on past experience and brushing up on the Data Files Support docs I think it might be best to just use package_data
and not include_package_data
(see specific comments below). Let me know what you think.
Thanks so much @duckontheweb! You're right about |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍🏻
Related Issue(s):
stac-utils/stactools#155
Description:
This includes type information in the packages so that users of
pystac
can utilize it. This is particularly useful if the downstream project usesmypy
or any of its competitors.PR Checklist:
pre-commit run --all-files
)scripts/test
)[ ] Documentation has been updated to reflect changes, if applicable