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

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

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

complete -F _dephell dephell
