toxygen/toxygen/__init__.py

10 lines
264 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'))
2024-02-10 20:32:31 +00:00
sys.path.insert(0, os.path.join(path, 'third_party'))
2016-07-06 13:25:04 +00:00
sys.path.insert(0, path)