{
  "$schema": "http://json-schema.org/schema",
  "title": "Build executor",
  "description": "",
  "type": "object",
  "properties": {
    "silent": {
      "type": "boolean",
      "description": "Hide output text.",
      "default": false
    },
    "outputPath": {
      "type": "string",
      "description": "Output path for the python tar/whl files"
    },
    "keepBuildFolder": {
      "type": "boolean",
      "description": "Keep build folder",
      "default": false
    },
    "ignorePaths": {
      "type": "array",
      "description": "Ignore folder/files on build process",
      "default": [".venv", ".tox", "tests"],
      "items": {
        "type": "string"
      }
    },
    "devDependencies": {
      "type": "boolean",
      "description": "Build with dev dependencies",
      "default": false
    },
    "lockedVersions": {
      "type": "boolean",
      "description": "Build with locked versions",
      "default": true
    },
    "bundleLocalDependencies": {
      "type": "boolean",
      "description": "Bundle local dependencies",
      "default": true
    },
    "customSourceName": {
      "type": "string",
      "description": "Name for the custom source URL",
      "default": "private"
    },
    "customSourceUrl": {
      "type": "string",
      "description": "URL for the custom source"
    },
    "format": {
      "type": "string",
      "description": "Format for the build",
      "enum": ["sdist", "wheel"]
    },
    "installDependenciesIfNotExists": {
      "type": "boolean",
      "description": "Run the package manager install command if the virtual environment is not activated (default: false)",
      "default": false
    }
  },
  "required": ["outputPath"]
}
