Added pyinstaller

This commit is contained in:
Dmitriy Shishkov 2023-11-05 15:06:16 +03:00
parent f6388366dd
commit b43f9e7695
Signed by: dm1sh
GPG Key ID: 027994B0AA357688
3 changed files with 8 additions and 2 deletions

3
.gitignore vendored
View File

@ -2,4 +2,5 @@ __pycache__/
.vscode/
.venv/
*.egg-info/
build/
build/
dist/

4
cli.py Normal file
View File

@ -0,0 +1,4 @@
from plotter_dialog.__main__ import main
if __name__ == "__main__":
main()

View File

@ -3,4 +3,5 @@ mypy==1.5.1
ruff==0.0.292
jedi-language-server==0.41.1
isort==5.12.0
pytest==7.4.2
pytest==7.4.2
pyinstaller==6.1.0