diff --git a/.gitignore b/.gitignore index 2a53280..c6c0326 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,8 @@ # ----- Project ----- - +*.dist +*.build +*.onefile-build +avaemb.exe # Created by https://www.toptal.com/developers/gitignore/api/python,node,visualstudiocode,jetbrains,macos,windows,linux # Edit at https://www.toptal.com/developers/gitignore?templates=python,node,visualstudiocode,jetbrains,macos,windows,linux diff --git a/avaemb.py b/avaemb.py new file mode 100644 index 0000000..36b0e65 --- /dev/null +++ b/avaemb.py @@ -0,0 +1,4 @@ +from avatar_embed import avaemb + +if __name__ == "__main__": + avaemb() diff --git a/avatar_embed/__init__.py b/avatar_embed/__init__.py index e69de29..70c2bad 100644 --- a/avatar_embed/__init__.py +++ b/avatar_embed/__init__.py @@ -0,0 +1 @@ +from .cli import avaemb as avaemb diff --git a/build.txt b/build.txt new file mode 100644 index 0000000..c9fe8d4 --- /dev/null +++ b/build.txt @@ -0,0 +1 @@ +poetry run python -m nuitka --follow-imports avaemb.py --onefile