6 lines
254 B
Python
6 lines
254 B
Python
import os
|
|
from .version import __version__
|
|
|
|
UIPATH = os.path.join(os.path.dirname(__file__), "UI")
|
|
ICONPATH = os.path.join(os.path.dirname(__file__), "resources/icons")
|
|
TRANSLATIONSPATH = os.path.join(os.path.dirname(__file__), "resources/translations")
|