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

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

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

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

complete -F _dephell dephell
