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

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

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

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

complete -F _dephell dephell
