Compare commits

...

4 Commits
v2.1.0 ... main

2 changed files with 14 additions and 6 deletions

View File

@ -1,6 +1,6 @@
[Application] [Application]
name=Solo Auswertung name=Solo Auswertung
version=2.1.0 version=2.1.1
# How to launch the app - this calls the 'main' function from the 'myapp' package: # How to launch the app - this calls the 'main' function from the 'myapp' package:
entry_point=main:main entry_point=main:main
# icon=myapp.ico # icon=myapp.ico
@ -17,10 +17,18 @@ console=true
# Packages from PyPI that your application requires, one per line # Packages from PyPI that your application requires, one per line
# These must have wheels on PyPI: # These must have wheels on PyPI:
pypi_wheels = beautifulsoup4==4.12.3 pypi_wheels = beautifulsoup4==4.12.3
coloredlogs==15.0.1 blinker==1.8.2
flask==3.0.2 click==8.1.7
tabulate==0.9.0
colorama==0.4.6 colorama==0.4.6
coloredlogs==15.0.1
flask==3.0.3
humanfriendly==10.0
itsdangerous==2.2.0
jinja2==3.1.4
markupsafe==2.1.5
soupsieve==2.5
tabulate==0.9.0
werkzeug==3.0.3
packages = solo_turnier packages = solo_turnier

View File

@ -1,8 +1,6 @@
import argparse import argparse
import logging import logging
import debugpy
class Cli: class Cli:
def __init__(self, l: logging.Logger): def __init__(self, l: logging.Logger):
@ -50,6 +48,8 @@ class Cli:
self.__args = parser.parse_args() self.__args = parser.parse_args()
if self.__args.debug: if self.__args.debug:
import debugpy
debugpy.listen(5678) debugpy.listen(5678)
debugpy.wait_for_client() debugpy.wait_for_client()