File size: 581 Bytes
eb67da4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
var pythonMirror = process.env.npm_config_python_mirror || process.env.PYTHON_MIRROR || 'https://www.python.org/ftp/python/'
var buildTools = {
installerName: 'BuildTools_Full.exe',
installerUrl: 'https://download.microsoft.com/download/5/f/7/5f7acaeb-8363-451f-9425-68a90f98b238/visualcppbuildtools_full.exe',
logName: 'build-tools-log.txt'
}
var python = {
installerName: 'python-2.7.11.msi',
installerUrl: pythonMirror.replace(/\/*$/, '/2.7.11/python-2.7.11.msi'),
targetName: 'python27',
logName: 'python-log.txt'
}
module.exports = {
buildTools,
python
}
|