_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 "package self inspect venv deps jail generate docker vendor project --help" -- ${current}) )
    return 0
  fi

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

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

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

complete -F _dephell dephell
