1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-11-07 03:22:33 +01:00
ScreenPlay/Tools/defines.py

13 lines
406 B
Python
Raw Normal View History

import sys
from pathlib import Path
2022-11-02 12:15:34 +01:00
from sys import stdout
2022-11-02 12:15:34 +01:00
stdout.reconfigure(encoding='utf-8')
VCPKG_VERSION = "c72cefb" # Master 27.10.2022
QT_VERSION = "6.3.2"
QT_IFW_VERSION = "4.4"
2022-11-02 12:15:34 +01:00
SCREENPLAY_VERSION = "0.15.0-RC3"
2022-10-14 11:54:00 +02:00
AQT_PATH = Path("C:/aqt") if sys.platform == "win32" else Path().home().joinpath("aqt")
PYTHON_EXECUTABLE = "python" if sys.platform == "win32" else "python3"
2022-11-02 12:15:34 +01:00
FFMPEG_VERSION = "5.0.1"