Compare commits
No commits in common. "main" and "v2.1.0" have entirely different histories.
@ -1,6 +1,6 @@
|
|||||||
[Application]
|
[Application]
|
||||||
name=Solo Auswertung
|
name=Solo Auswertung
|
||||||
version=2.1.1
|
version=2.1.0
|
||||||
# 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,18 +17,10 @@ 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
|
||||||
blinker==1.8.2
|
|
||||||
click==8.1.7
|
|
||||||
colorama==0.4.6
|
|
||||||
coloredlogs==15.0.1
|
coloredlogs==15.0.1
|
||||||
flask==3.0.3
|
flask==3.0.2
|
||||||
humanfriendly==10.0
|
|
||||||
itsdangerous==2.2.0
|
|
||||||
jinja2==3.1.4
|
|
||||||
markupsafe==2.1.5
|
|
||||||
soupsieve==2.5
|
|
||||||
tabulate==0.9.0
|
tabulate==0.9.0
|
||||||
werkzeug==3.0.3
|
colorama==0.4.6
|
||||||
|
|
||||||
packages = solo_turnier
|
packages = solo_turnier
|
||||||
|
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
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):
|
||||||
@ -48,8 +50,6 @@ 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()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user