10 lines
216 B
Python
10 lines
216 B
Python
import os
|
|
|
|
BASE_DIR = os.path.dirname(__file__)
|
|
|
|
# Default config file to use for dotnet stuff
|
|
CONFIG_FILE = os.path.join(BASE_DIR, 'Net2Scripting.config')
|
|
|
|
# Generic lib dir
|
|
LIB_DIR = os.path.join(BASE_DIR, 'libs')
|