forked from varia/distribusi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
323 B
12 lines
323 B
#!/bin/bash
|
|
|
|
# Ultra wild west single binary compiling
|
|
# https://github.com/linkedin/shiv
|
|
|
|
shiv --output-file=distribusi.pyz \
|
|
--site-packages=.venv/lib/python3.7/site-packages/ \
|
|
--entry-point=distribusi.cli.cli_entrypoint \
|
|
--python="/usr/bin/env python3" \
|
|
--compressed \
|
|
--compile-pyc \
|
|
.
|
|
|