#!/bin/sh
#
# Find all Python imports.
#
# ./tools/deps.sh certbot
# ./tools/deps.sh acme
# ./tools/deps.sh certbot-apache
# ...
#
# Manually compare the output with deps in setup.py.
git grep -h -E '^(import|from.*import)' $1/ | \
awk '{print $2}' | \
grep -vE "^$1" | \
sort -u