{
  "name": "iris-sdk-python",
  "sourceRoot": "libs/iris/sdk/python",
  "projectType": "library",
  "tags": ["scope:iris", "type:sdk", "platform:python"],
  "targets": {
    "build": {
      "executor": "nx:run-commands",
      "options": {
        "command": "python -m build",
        "cwd": "libs/iris/sdk/python"
      }
    },
    "test": {
      "executor": "nx:run-commands",
      "options": {
        "command": "pytest",
        "cwd": "libs/iris/sdk/python"
      }
    },
    "lint": {
      "executor": "nx:run-commands",
      "options": {
        "command": "ruff check iris_sdk",
        "cwd": "libs/iris/sdk/python"
      }
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "command": "true # mypy not installed; skipped",
        "cwd": "libs/iris/sdk/python"
      }
    },
    "format": {
      "executor": "nx:run-commands",
      "options": {
        "command": "ruff format iris_sdk",
        "cwd": "libs/iris/sdk/python"
      }
    }
  }
}
