correct sound paths

pull/1/head
Thomas Lindner 2022-12-29 23:20:19 +01:00
parent b189600ecc
commit 8027f3f537
2 changed files with 4 additions and 3 deletions

View File

@ -27,8 +27,8 @@ install_requires =
where = src
[options.data_files]
sounds/blunder = sounds/blunder/tts_what_a_blunder.mp3
sounds/illegal = sounds/illegal/alarm.mp3
share/blunderboard/sounds/blunder = sounds/blunder/tts_what_a_blunder.mp3
share/blunderboard/sounds/illegal = sounds/illegal/alarm.mp3
[options.entry_points]
console_scripts =

View File

@ -3,8 +3,9 @@ from pathlib import Path
from pygame import mixer
import random
from stockfish import Stockfish
import sys
sound_path = Path("../../sounds")
sound_path = Path(sys.prefix) / "share" / "blunderboard" / "sounds"
class BlunderEvaluator: