Skip to content

Commit

Permalink
add: makefile for bundling
Browse files Browse the repository at this point in the history
  • Loading branch information
RealistikDash committed Jun 9, 2023
1 parent 2e1ab11 commit e599e71
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
build: fps_bypass/main.py
pyinstaller --onefile fps_bypass/main.py --name fps_bypass --clean --noconfirm --uac-admin -i "NONE"
6 changes: 4 additions & 2 deletions fps_bypass/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,12 @@

from rich.console import Console
from rich.progress import Progress
from rich.progress import TextColumn, BarColumn, TaskProgressColumn
from rich.progress import TextColumn
from rich.progress import BarColumn
from rich.progress import TaskProgressColumn
from rich.logging import RichHandler
from rich.traceback import install
from rich.prompt import IntPrompt, InvalidResponse
from rich.prompt import IntPrompt

console = Console()
install(console=console)
Expand Down
1 change: 1 addition & 0 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
# the project. Otherwise, just use the requirements.txt file.
-r main.txt
pre-commit
pyinstaller

0 comments on commit e599e71

Please sign in to comment.