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

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

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

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

complete -F _dephell dephell
