15 lines
363 B
Python
15 lines
363 B
Python
# -*- python -*-
|
|
# ex: set filetype=python:
|
|
import importlib
|
|
import os
|
|
import sys
|
|
|
|
# Add the "config" directory to the Python path
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "config"))
|
|
|
|
# Import the setup module from the "config" directory
|
|
import setup
|
|
importlib.reload(setup)
|
|
|
|
# Use the setup module as intended
|
|
BuildmasterConfig = setup.setup()
|