setup.py: update/fix deps.

This commit is contained in:
Jakub Warmuz
2015-09-01 19:57:41 +00:00
parent c3941b1a8d
commit c6e4c7dea1
4 changed files with 19 additions and 3 deletions
Executable
+15
View File
@@ -0,0 +1,15 @@
#!/bin/sh
#
# Find all Python imports.
#
# ./deps.sh letsencrypt
# ./deps.sh acme
# ./deps.sh letsencrypt-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