diff options
| -rw-r--r-- | PKGLIST | 1 | ||||
| -rw-r--r-- | setup.py | 6 |
2 files changed, 7 insertions, 0 deletions
@@ -4,3 +4,4 @@ click inquirer pyyaml tk +pyinstaller @@ -183,6 +183,12 @@ def sort(): cli.add_command(sort) [email protected](help="Build the project.") +def build(): + logger.info("Building the project...") + os.system("pyinstaller --onefile --windowed --name Texty src/texty.py") + +cli.add_command(build) if __name__ == "__main__": cli() |
