Skip to content

Commit

Permalink
Merge pull request #33 from pranavs6/main
Browse files Browse the repository at this point in the history
Addition: A way to containerize the scripts into an executable application as needed
  • Loading branch information
SpreadSheets600 authored Oct 23, 2024
2 parents c1556a8 + cfbb40d commit 9056268
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,16 @@ pip install -r requirements.txt
```bash
python Main.py
```
### Making an executable for the application

1. Navigate to the `SRC` directory
2. Execute the following command in the terminal

```bash
pyinstaller --onefile --noconsole --hidden-import Database --hidden-import Exceptions --hidden-import Utilities Main.py
```
3. Once done, head back and navigate into the `dist` directory
4. Click open the `Main` application and enjoy the product!

## File Structure

Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
pyinstaller
pyperclip
customtkinter
pytest
Expand Down

0 comments on commit 9056268

Please sign in to comment.