mirror of
https://github.com/certbot/certbot.git
synced 2026-08-02 08:03:19 +02:00
setup.py: update/fix deps.
This commit is contained in:
Executable
+15
@@ -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
|
||||
Reference in New Issue
Block a user