mcps 0.3.0

A command-line tool for running Monte Carlo simulations on project schedules.
Documentation
{
  "num_workers": 8,
  "start_date": "2024-08-01",
  "tasks": [
    {
      "id": "RequirementsGathering",
      "estimate": {
        "min": 10.0,
        "likely": 25.0,
        "max": 30.0
      },
      "dependencies": []
    },
    {
      "id": "SystemDesign",
      "estimate": {
        "min": 10.0,
        "likely": 25.0,
        "max": 30.0
      },
      "dependencies": [
        "RequirementsGathering"
      ]
    },
    {
      "id": "DatabaseDesign",
      "estimate": {
        "min": 10.0,
        "likely": 25.0,
        "max": 30.0
      },
      "dependencies": [
        "SystemDesign"
      ]
    },
    {
      "id": "UIUXDesign",
      "estimate": {
        "min": 10.0,
        "likely": 25.0,
        "max": 30.0
      },
      "dependencies": [
        "RequirementsGathering"
      ]
    },
    {
      "id": "FrontendDevelopment",
      "estimate": {
        "min": 10.0,
        "likely": 25.0,
        "max": 30.0
      },
      "dependencies": [
        "UIUXDesign"
      ]
    },
    {
      "id": "BackendDevelopment",
      "estimate": {
        "min": 10.0,
        "likely": 25.0,
        "max": 30.0
      },
      "dependencies": [
        "SystemDesign",
        "DatabaseDesign"
      ]
    },
    {
      "id": "APIDevelopment",
      "estimate": {
        "min": 10.0,
        "likely": 25.0,
        "max": 30.0
      },
      "dependencies": [
        "BackendDevelopment"
      ]
    },
    {
      "id": "IntegrationTesting",
      "estimate": {
        "min": 10.0,
        "likely": 25.0,
        "max": 30.0
      },
      "dependencies": [
        "FrontendDevelopment",
        "BackendDevelopment",
        "APIDevelopment"
      ]
    },
    {
      "id": "UserAcceptanceTesting",
      "estimate": {
        "min": 10.0,
        "likely": 25.0,
        "max": 30.0
      },
      "dependencies": [
        "IntegrationTesting"
      ]
    },
    {
      "id": "PerformanceOptimization",
      "estimate": {
        "min": 10.0,
        "likely": 25.0,
        "max": 30.0
      },
      "dependencies": [
        "IntegrationTesting"
      ]
    },
    {
      "id": "SecurityAudit",
      "estimate": {
        "min": 10.0,
        "likely": 25.0,
        "max": 30.0
      },
      "dependencies": [
        "IntegrationTesting"
      ]
    },
    {
      "id": "FinalDeployment",
      "estimate": {
        "min": 10.0,
        "likely": 25.0,
        "max": 30.0
      },
      "dependencies": [
        "UserAcceptanceTesting",
        "PerformanceOptimization",
        "SecurityAudit"
      ]
    },
    {
      "id": "ProjectRetrospective",
      "estimate": {
        "min": 10.0,
        "likely": 25.0,
        "max": 30.0
      },
      "dependencies": [
        "FinalDeployment"
      ]
    }
  ]
}