mirror of
https://github.com/certbot/certbot.git
synced 2026-07-27 08:09:10 +02:00
setup.py: update/fix deps.
This commit is contained in:
+1
-2
@@ -5,16 +5,15 @@ from setuptools import find_packages
|
||||
|
||||
|
||||
install_requires = [
|
||||
'argparse',
|
||||
# load_pem_private/public_key (>=0.6)
|
||||
# rsa_recover_prime_factors (>=0.8)
|
||||
'cryptography>=0.8',
|
||||
'mock<1.1.0', # py26
|
||||
'pyrfc3339',
|
||||
'ndg-httpsclient', # urllib3 InsecurePlatformWarning (#304)
|
||||
'pyasn1', # urllib3 InsecurePlatformWarning (#304)
|
||||
# Connection.set_tlsext_host_name (>=0.13), X509Req.get_extensions (>=0.15)
|
||||
'PyOpenSSL>=0.15',
|
||||
'pyrfc3339',
|
||||
'pytz',
|
||||
'requests',
|
||||
'six',
|
||||
|
||||
@@ -5,8 +5,9 @@ from setuptools import find_packages
|
||||
install_requires = [
|
||||
'acme',
|
||||
'letsencrypt',
|
||||
'pyparsing>=1.5.5', # Python3 support; perhaps unnecessary?
|
||||
'mock<1.1.0', # py26
|
||||
'PyOpenSSL',
|
||||
'pyparsing>=1.5.5', # Python3 support; perhaps unnecessary?
|
||||
'zope.interface',
|
||||
]
|
||||
|
||||
|
||||
@@ -41,6 +41,7 @@ install_requires = [
|
||||
'pyrfc3339',
|
||||
'python2-pythondialog>=3.2.2rc1', # Debian squeeze support, cf. #280
|
||||
'pytz',
|
||||
'requests',
|
||||
'zope.component',
|
||||
'zope.interface',
|
||||
]
|
||||
|
||||
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