toxygen/toxygen/__init__.py

9 lines
210 B
Python
Raw Normal View History

2016-07-06 13:25:04 +00: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'))
sys.path.insert(0, path)