_dephell()
{
  local first second current double
  COMPREPLY=()
  first="${COMP_WORDS[1]}"
  second="${COMP_WORDS[2]}"
  double="${COMP_WORDS[1]} ${COMP_WORDS[2]}"
  current="${COMP_WORDS[COMP_CWORD]}"

  # autocomplete command first word
  if [[ ${first} == ${current} ]] ; then
    COMPREPLY=( $(compgen -W "docker project self inspect venv generate jail autocomplete deps package vendor auth --help" -- ${current}) )
    return 0
  fi

  # autocomplete command second word
  if [[ ${second} == ${current} ]] ; then
    case "${first}" in
      
        deps)
          COMPREPLY=( $(compgen -W "sync install licenses check audit outdated convert tree add " -- ${current}) )
          return 0
          ;;
      
        docker)
          COMPREPLY=( $(compgen -W "create stop shell destroy run prepare tags " -- ${current}) )
          return 0
          ;;
      
        generate)
          COMPREPLY=( $(compgen -W "editorconfig config contributing authors license travis " -- ${current}) )
          return 0
          ;;
      
        inspect)
          COMPREPLY=( $(compgen -W "self project gadget config venv auth " -- ${current}) )
          return 0
          ;;
      
        jail)
          COMPREPLY=( $(compgen -W "try list remove install " -- ${current}) )
          return 0
          ;;
      
        package)
          COMPREPLY=( $(compgen -W "show search remove releases install downloads list purge " -- ${current}) )
          return 0
          ;;
      
        project)
          COMPREPLY=( $(compgen -W "validate build test bump " -- ${current}) )
          return 0
          ;;
      
        self)
          COMPREPLY=( $(compgen -W "uncache upgrade " -- ${current}) )
          return 0
          ;;
      
        vendor)
          COMPREPLY=( $(compgen -W "import download " -- ${current}) )
          return 0
          ;;
      
        venv)
          COMPREPLY=( $(compgen -W "destroy create run shell " -- ${current}) )
          return 0
          ;;
      
      *)
      ;;
    esac
  fi

  # autocomplete one-word command arguments
  case "${first}" in
    
      "auth")
        COMPREPLY=( $(compgen -W "-c -h -e --config --table --traceback --filter --level --nocolors --format --silent --help --env --pdb " -- ${current}) )
        return 0
        ;;
    
      "autocomplete")
        COMPREPLY=( $(compgen -W "-c -h -e --config --table --traceback --filter --level --nocolors --format --silent --help --env --pdb " -- ${current}) )
        return 0
        ;;
    
      "deps add")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path --from-path -h -e --tests --level --prereleases --from-format --mutations --help --versioning --from -c --config --table --strategy --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "deps audit")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path --from-path -h -e --tests --level --from-format --versioning --help --from -c --config --table --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "deps check")
        COMPREPLY=( $(compgen -W "--warehouse --project --dotenv --format --repo --cache-path --from-path -h -e --tests --level --prereleases --from-format --mutations --help --versioning --venv -c --from --config --python --table --strategy --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "deps convert")
        COMPREPLY=( $(compgen -W "--to --warehouse --project --format --repo --cache-path --from-path --to-path -h -e --tests --sdist-ratio --level --prereleases --from-format --mutations --help --versioning --from -c --config --table --strategy --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --to-format --pdb " -- ${current}) )
        return 0
        ;;
    
      "deps install")
        COMPREPLY=( $(compgen -W "--warehouse --project --dotenv --format --repo --cache-path --from-path -h -e --tests --level --prereleases --from-format --mutations --help --versioning --venv -c --from --config --python --table --strategy --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "deps licenses")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path --from-path -h -e --tests --level --prereleases --from-format --mutations --help --versioning --from -c --config --table --strategy --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "deps outdated")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path --from-path -h -e --tests --level --from-format --versioning --help --from -c --config --table --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "deps sync")
        COMPREPLY=( $(compgen -W "--to --warehouse --project --dotenv --format --repo --cache-path --to-path -h -e --tests --sdist-ratio --level --prereleases --mutations --versioning --help --venv -c --config --python --table --strategy --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --to-format --pdb " -- ${current}) )
        return 0
        ;;
    
      "deps tree")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path --from-path -h -e --tests --level --type --prereleases --from-format --mutations --help --versioning --from -c --config --table --strategy --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "docker create")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --docker-tag --tests --docker-repo --docker-container --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "docker destroy")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --docker-tag --tests --docker-repo --docker-container --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "docker prepare")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --docker-tag --tests --docker-repo --docker-container --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "docker run")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --docker-tag --tests --docker-repo --docker-container --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "docker shell")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --docker-tag --tests --docker-repo --docker-container --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "docker stop")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --docker-tag --tests --docker-repo --docker-container --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "docker tags")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --docker-tag --tests --docker-repo --docker-container --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "generate authors")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --tests --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "generate config")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --tests --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "generate contributing")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --tests --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "generate editorconfig")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --tests --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "generate license")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --tests --owner --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "generate travis")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --tests --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "inspect auth")
        COMPREPLY=( $(compgen -W "-c -h -e --config --table --traceback --filter --level --nocolors --format --silent --help --env --pdb " -- ${current}) )
        return 0
        ;;
    
      "inspect config")
        COMPREPLY=( $(compgen -W "--to --warehouse --project --dotenv --format --repo --cache-path --from-path --to-path -h -e --tests --sdist-ratio --level --prereleases --from-format --mutations --help --versioning --from -c --venv --config --python --table --strategy --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --to-format --pdb " -- ${current}) )
        return 0
        ;;
    
      "inspect gadget")
        COMPREPLY=( $(compgen -W "-c -h -e --config --help --env " -- ${current}) )
        return 0
        ;;
    
      "inspect self")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --tests --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "inspect venv")
        COMPREPLY=( $(compgen -W "--project --dotenv --format --cache-path -h -e --tests --level --versioning --help --venv -c --config --python --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "inspect project")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path --from-path -h -e --tests --level --from-format --versioning --help --from -c --config --table --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "jail install")
        COMPREPLY=( $(compgen -W "--project --dotenv --format --cache-path -h -e --tests --level --prereleases --mutations --versioning --help --venv -c --config --python --table --strategy --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "jail list")
        COMPREPLY=( $(compgen -W "--project --dotenv --format --cache-path -h -e --tests --level --versioning --help --venv -c --config --python --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "jail remove")
        COMPREPLY=( $(compgen -W "--project --dotenv --format --cache-path -h -e --tests --level --versioning --help --venv -c --config --python --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "jail try")
        COMPREPLY=( $(compgen -W "--project --dotenv --format --cache-path -h -e --tests --level --versioning --help --venv -c --config --python --table --command --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "package downloads")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path -h -e --tests --level --versioning --help -c --config --table --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "package install")
        COMPREPLY=( $(compgen -W "--project --dotenv --format --cache-path -h -e --tests --level --prereleases --mutations --versioning --help --venv -c --config --python --table --strategy --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "package list")
        COMPREPLY=( $(compgen -W "--warehouse --project --dotenv --format --repo --cache-path -h -e --tests --level --versioning --help --venv -c --config --python --table --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "package purge")
        COMPREPLY=( $(compgen -W "--project --dotenv --format --cache-path -h -e --tests --level --versioning --help --venv -c --config --python --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "package releases")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path -h -e --tests --level --versioning --help -c --config --table --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "package remove")
        COMPREPLY=( $(compgen -W "--project --dotenv --format --cache-path -h -e --tests --level --versioning --help --venv -c --config --python --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "package search")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path -h -e --tests --level --versioning --help -c --config --table --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "package show")
        COMPREPLY=( $(compgen -W "--warehouse --project --dotenv --format --repo --cache-path -h -e --tests --level --versioning --help --venv -c --config --python --table --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "project build")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path --from-path -h -e --tests --level --prereleases --from-format --mutations --help --versioning --from -c --config --table --strategy --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "project bump")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path --from-path -h -e --tests --level --from-format --versioning --help --from -c --config --table --bitbucket --nocolors --env --bin --envs --tag --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "project test")
        COMPREPLY=( $(compgen -W "--project --dotenv --format --cache-path --from-path -h -e --tests --level --from-format --versioning --help --venv -c --from --config --python --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "project validate")
        COMPREPLY=( $(compgen -W "--project --format --cache-path --from-path -h -e --tests --level --from-format --versioning --help --from -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "self uncache")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --tests --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "self upgrade")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --tests --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "vendor download")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path --from-path -h -e --tests --level --prereleases --from-format --mutations --help --versioning --from -c --config --table --strategy --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "vendor import")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path --from-path -h -e --tests --level --prereleases --from-format --mutations --help --versioning --from -c --config --table --strategy --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "venv create")
        COMPREPLY=( $(compgen -W "--project --dotenv --format --cache-path --from-path -h -e --tests --level --from-format --versioning --help --venv -c --from --config --python --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "venv destroy")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --tests --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "venv run")
        COMPREPLY=( $(compgen -W "--warehouse --project --dotenv --format --repo --cache-path -h -e --tests --level --versioning --help --venv -c --config --python --table --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "venv shell")
        COMPREPLY=( $(compgen -W "--project --dotenv --format --cache-path --from-path -h -e --tests --level --from-format --versioning --help --venv -c --from --config --python --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
    *)
    ;;
  esac

  # autocomplete two-words command arguments
  case "${double}" in
    
      "auth")
        COMPREPLY=( $(compgen -W "-c -h -e --config --table --traceback --filter --level --nocolors --format --silent --help --env --pdb " -- ${current}) )
        return 0
        ;;
    
      "autocomplete")
        COMPREPLY=( $(compgen -W "-c -h -e --config --table --traceback --filter --level --nocolors --format --silent --help --env --pdb " -- ${current}) )
        return 0
        ;;
    
      "deps add")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path --from-path -h -e --tests --level --prereleases --from-format --mutations --help --versioning --from -c --config --table --strategy --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "deps audit")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path --from-path -h -e --tests --level --from-format --versioning --help --from -c --config --table --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "deps check")
        COMPREPLY=( $(compgen -W "--warehouse --project --dotenv --format --repo --cache-path --from-path -h -e --tests --level --prereleases --from-format --mutations --help --versioning --venv -c --from --config --python --table --strategy --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "deps convert")
        COMPREPLY=( $(compgen -W "--to --warehouse --project --format --repo --cache-path --from-path --to-path -h -e --tests --sdist-ratio --level --prereleases --from-format --mutations --help --versioning --from -c --config --table --strategy --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --to-format --pdb " -- ${current}) )
        return 0
        ;;
    
      "deps install")
        COMPREPLY=( $(compgen -W "--warehouse --project --dotenv --format --repo --cache-path --from-path -h -e --tests --level --prereleases --from-format --mutations --help --versioning --venv -c --from --config --python --table --strategy --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "deps licenses")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path --from-path -h -e --tests --level --prereleases --from-format --mutations --help --versioning --from -c --config --table --strategy --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "deps outdated")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path --from-path -h -e --tests --level --from-format --versioning --help --from -c --config --table --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "deps sync")
        COMPREPLY=( $(compgen -W "--to --warehouse --project --dotenv --format --repo --cache-path --to-path -h -e --tests --sdist-ratio --level --prereleases --mutations --versioning --help --venv -c --config --python --table --strategy --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --to-format --pdb " -- ${current}) )
        return 0
        ;;
    
      "deps tree")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path --from-path -h -e --tests --level --type --prereleases --from-format --mutations --help --versioning --from -c --config --table --strategy --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "docker create")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --docker-tag --tests --docker-repo --docker-container --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "docker destroy")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --docker-tag --tests --docker-repo --docker-container --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "docker prepare")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --docker-tag --tests --docker-repo --docker-container --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "docker run")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --docker-tag --tests --docker-repo --docker-container --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "docker shell")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --docker-tag --tests --docker-repo --docker-container --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "docker stop")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --docker-tag --tests --docker-repo --docker-container --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "docker tags")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --docker-tag --tests --docker-repo --docker-container --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "generate authors")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --tests --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "generate config")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --tests --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "generate contributing")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --tests --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "generate editorconfig")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --tests --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "generate license")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --tests --owner --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "generate travis")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --tests --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "inspect auth")
        COMPREPLY=( $(compgen -W "-c -h -e --config --table --traceback --filter --level --nocolors --format --silent --help --env --pdb " -- ${current}) )
        return 0
        ;;
    
      "inspect config")
        COMPREPLY=( $(compgen -W "--to --warehouse --project --dotenv --format --repo --cache-path --from-path --to-path -h -e --tests --sdist-ratio --level --prereleases --from-format --mutations --help --versioning --from -c --venv --config --python --table --strategy --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --to-format --pdb " -- ${current}) )
        return 0
        ;;
    
      "inspect gadget")
        COMPREPLY=( $(compgen -W "-c -h -e --config --help --env " -- ${current}) )
        return 0
        ;;
    
      "inspect self")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --tests --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "inspect venv")
        COMPREPLY=( $(compgen -W "--project --dotenv --format --cache-path -h -e --tests --level --versioning --help --venv -c --config --python --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "inspect project")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path --from-path -h -e --tests --level --from-format --versioning --help --from -c --config --table --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "jail install")
        COMPREPLY=( $(compgen -W "--project --dotenv --format --cache-path -h -e --tests --level --prereleases --mutations --versioning --help --venv -c --config --python --table --strategy --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "jail list")
        COMPREPLY=( $(compgen -W "--project --dotenv --format --cache-path -h -e --tests --level --versioning --help --venv -c --config --python --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "jail remove")
        COMPREPLY=( $(compgen -W "--project --dotenv --format --cache-path -h -e --tests --level --versioning --help --venv -c --config --python --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "jail try")
        COMPREPLY=( $(compgen -W "--project --dotenv --format --cache-path -h -e --tests --level --versioning --help --venv -c --config --python --table --command --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "package downloads")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path -h -e --tests --level --versioning --help -c --config --table --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "package install")
        COMPREPLY=( $(compgen -W "--project --dotenv --format --cache-path -h -e --tests --level --prereleases --mutations --versioning --help --venv -c --config --python --table --strategy --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "package list")
        COMPREPLY=( $(compgen -W "--warehouse --project --dotenv --format --repo --cache-path -h -e --tests --level --versioning --help --venv -c --config --python --table --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "package purge")
        COMPREPLY=( $(compgen -W "--project --dotenv --format --cache-path -h -e --tests --level --versioning --help --venv -c --config --python --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "package releases")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path -h -e --tests --level --versioning --help -c --config --table --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "package remove")
        COMPREPLY=( $(compgen -W "--project --dotenv --format --cache-path -h -e --tests --level --versioning --help --venv -c --config --python --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "package search")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path -h -e --tests --level --versioning --help -c --config --table --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "package show")
        COMPREPLY=( $(compgen -W "--warehouse --project --dotenv --format --repo --cache-path -h -e --tests --level --versioning --help --venv -c --config --python --table --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "project build")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path --from-path -h -e --tests --level --prereleases --from-format --mutations --help --versioning --from -c --config --table --strategy --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "project bump")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path --from-path -h -e --tests --level --from-format --versioning --help --from -c --config --table --bitbucket --nocolors --env --bin --envs --tag --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "project test")
        COMPREPLY=( $(compgen -W "--project --dotenv --format --cache-path --from-path -h -e --tests --level --from-format --versioning --help --venv -c --from --config --python --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "project validate")
        COMPREPLY=( $(compgen -W "--project --format --cache-path --from-path -h -e --tests --level --from-format --versioning --help --from -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "self uncache")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --tests --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "self upgrade")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --tests --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "vendor download")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path --from-path -h -e --tests --level --prereleases --from-format --mutations --help --versioning --from -c --config --table --strategy --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "vendor import")
        COMPREPLY=( $(compgen -W "--warehouse --project --format --repo --cache-path --from-path -h -e --tests --level --prereleases --from-format --mutations --help --versioning --from -c --config --table --strategy --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "venv create")
        COMPREPLY=( $(compgen -W "--project --dotenv --format --cache-path --from-path -h -e --tests --level --from-format --versioning --help --venv -c --from --config --python --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "venv destroy")
        COMPREPLY=( $(compgen -W "--project --format --cache-path -h -e --tests --level --versioning --help -c --config --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "venv run")
        COMPREPLY=( $(compgen -W "--warehouse --project --dotenv --format --repo --cache-path -h -e --tests --level --versioning --help --venv -c --config --python --table --bitbucket --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
      "venv shell")
        COMPREPLY=( $(compgen -W "--project --dotenv --format --cache-path --from-path -h -e --tests --level --from-format --versioning --help --venv -c --from --config --python --table --nocolors --env --bin --envs --traceback --filter --cache-ttl --silent --pdb " -- ${current}) )
        return 0
        ;;
    
    *)
    ;;
  esac
}

complete -F _dephell dephell
