toxygen/toxygen/__init__.py

10 lines
264 B
Python
Raw Normal View History

2016-07-06 15:25:04 +02:00
import os
import sys
path = os.path.dirname(os.path.realpath(__file__)) # curr dir
sys.path.insert(0, os.path.join(path, 'styles'))
sys.path.insert(0, os.path.join(path, 'plugins'))
2024-02-10 21:32:31 +01:00
sys.path.insert(0, os.path.join(path, 'third_party'))
2016-07-06 15:25:04 +02:00
sys.path.insert(0, path)