diff options
| -rw-r--r-- | setup.py | 27 | ||||
| -rw-r--r-- | texty.prefs | 2 |
2 files changed, 28 insertions, 1 deletions
@@ -153,5 +153,32 @@ def configure(): cli.add_command(configure) [email protected](help="Run the project.") +def run(): + logger.info("Running project...") + os.system("python3 src/texty.py") + + +cli.add_command(run) + + [email protected](help="Start Linter.") +def lint(): + logger.info("Starting Linter...") + os.system("python3 -m black .") + + +cli.add_command(lint) + + [email protected](help="Start Sorter.") +def sort(): + logger.info("Starting Sorter...") + os.system("python3 -m isort .") + + +cli.add_command(sort) + + if __name__ == "__main__": cli() diff --git a/texty.prefs b/texty.prefs index cbac23a..6ff3b85 100644 --- a/texty.prefs +++ b/texty.prefs @@ -1 +1 @@ -{"width": 1032, "height": 790, "x_pos": 391, "y_pos": 124}
\ No newline at end of file +{"width": 1032, "height": 790, "x_pos": 277, "y_pos": 113}
\ No newline at end of file |
