diff --git a/.gitignore b/.gitignore index fb78577..4a715c8 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,9 @@ __pycache__/ # Python virtual environment venv/ -env/ \ No newline at end of file +env/ + +# PyInstaller +*.spec +build/ +dist/ \ No newline at end of file diff --git a/build.py b/build.py new file mode 100644 index 0000000..a8b29b4 --- /dev/null +++ b/build.py @@ -0,0 +1,3 @@ +import os + +os.system("pyinstaller --onefile dhere.py --icon icon.ico") \ No newline at end of file diff --git a/icon.ico b/icon.ico new file mode 100644 index 0000000..c45372f Binary files /dev/null and b/icon.ico differ diff --git a/requirements.txt b/requirements.txt index e2cc9e9..932bc0f 100644 Binary files a/requirements.txt and b/requirements.txt differ