File size: 219 Bytes
97ac315
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import os
import sys

# Get project root
PROJECT_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), "../../"))

# Add to Python path
if PROJECT_ROOT not in sys.path:
    sys.path.append(PROJECT_ROOT)