This repository has been archived by the owner on Oct 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix python package and publish typing information (#347)
* Add __init__.py files to generated stubs Signed-off-by: Eduardo Apolinario <[email protected]> * Publish stubs in the package Signed-off-by: Eduardo Apolinario <[email protected]> * Include __init__.py in verification workflow Signed-off-by: Eduardo Apolinario <[email protected]> * Bump versions of remote plugins Signed-off-by: Eduardo Apolinario <[email protected]> Signed-off-by: Eduardo Apolinario <[email protected]> Co-authored-by: Eduardo Apolinario <[email protected]>
- Loading branch information
1 parent
f4ede35
commit b4a6a57
Showing
13 changed files
with
15 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,10 @@ | |
maintainer_email='[email protected]', | ||
packages=find_packages('gen/pb_python'), | ||
package_dir={'': 'gen/pb_python'}, | ||
# https://github.com/pypa/setuptools/issues/3136 describes an extension to | ||
# setuptools that would involve a simpler way to specify this, but while | ||
# that does not happen we have to package the pyi files manually like so: | ||
package_data={'flyteidl': ["*.pyi", "**/*.pyi"]}, | ||
dependency_links=[], | ||
install_requires=[ | ||
'googleapis-common-protos', | ||
|