-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
lidong
committed
Jun 4, 2024
1 parent
2f14000
commit 057a4ef
Showing
9 changed files
with
602 additions
and
463 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +0,0 @@ | ||
from .main import download_python | ||
|
||
__all__ = ["download_python"] | ||
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from .main import download_python | ||
|
||
|
||
if __name__ == "__main__": | ||
from ..zipapps.download_python import download_python | ||
download_python() |
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
# -*- coding: utf-8 -*- | ||
from .main import create_app, __version__, ZipApp | ||
from .main import create_app, __version__, ZipApp, pip_install_target | ||
from .activate_zipapps import activate | ||
|
||
__all__ = ['create_app', 'activate', '__version__', 'ZipApp'] | ||
__all__ = ["create_app", "activate", "__version__", "ZipApp", "pip_install_target"] | ||
__doc__ = "Package your python code into one zip file, even a virtual environment." |
Oops, something went wrong.