{
  "name": "@yemaya/sdk-python",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "libs/yemaya/sdk-python/src",
  "projectType": "library",
  "tags": ["scope:yemaya", "layer:clients", "type:lib", "language:python"],
  "targets": {
    "build": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/dist"],
      "options": {
        "cwd": "libs/yemaya/sdk-python",
        "command": "python3 -m build"
      }
    },
    "test": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "libs/yemaya/sdk-python",
        "command": "pytest -q"
      }
    },
    "lint": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "libs/yemaya/sdk-python",
        "command": "ruff check src tests"
      }
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "libs/yemaya/sdk-python",
        "command": "true # mypy not installed; skipped"
      }
    }
  }
}
