From what I understand
python -m zipapp myapp
creates a .pyz file of the directory named myapp. How do i create a .pyz of the current folder in which my working directory is set.
I tried python -m zipapp .
which doesnt work.
What would be the exact argument for packaging of the working directory?
Same doubt for the following:
If I do pip install -r requirements.txt --target <directory>
, how do i mention current working directory in <directory>