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

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

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

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

complete -F _dephell dephell
