This repository has been archived by the owner on Dec 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #224 from 18F/improvement/remove_explicit_dependen…
…cy_on_sslyze Removing explicit dependency on sslyze
- Loading branch information
Showing
7 changed files
with
64 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# These are the only dependencies which must get packaged | ||
# into every (Python-based) Lambda container build. | ||
|
||
strict-rfc3339 | ||
publicsuffix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# These requirements are useful or needed when developing | ||
# domain-scan itself. | ||
|
||
ipython | ||
pytest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
### | ||
# Requirements used by specific gatherers. | ||
|
||
# censys | ||
google-cloud-bigquery | ||
google-auth-oauthlib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
### | ||
# Requirements used by specific scanners. | ||
|
||
# pshtt | ||
git+https://github.com/dhs-ncats/pshtt.git#egg=pshtt | ||
|
||
# trustymail | ||
git+https://github.com/dhs-ncats/trustymail.git#egg=trustymail | ||
|
||
# sslyze | ||
sslyze>=1.3.4,<1.4.0 | ||
cryptography | ||
|
||
# a11y / csp | ||
pyyaml | ||
requests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,13 @@ | ||
########################## | ||
# Common (Local + Lambda) | ||
########################## | ||
# | ||
# These are the only dependencies which must get packaged | ||
# into every (Python-based) Lambda container build. | ||
|
||
strict-rfc3339 | ||
publicsuffix | ||
|
||
|
||
################# | ||
# Common (Local) | ||
################# | ||
######## | ||
# NOTE: Any requirements which are needed for Python-based Lambda function | ||
# packaging should also be listed in lambda/requirements-lambda.txt. | ||
# Those are in the bottom section below. | ||
|
||
# Used by parts of domain-scan, but not used inside of Lambda function | ||
# invocation. | ||
boto3 | ||
ipython | ||
|
||
|
||
############ | ||
# Scanners | ||
############ | ||
|
||
# sslyze | ||
sslyze>=1.3.4,<1.4.0 | ||
cryptography | ||
|
||
# a11y | ||
pyyaml | ||
requests | ||
|
||
|
||
############ | ||
# Gatherers | ||
############ | ||
|
||
# censys | ||
google-cloud-bigquery | ||
google-auth-oauthlib | ||
|
||
|
||
############ | ||
# Tests | ||
############ | ||
|
||
pytest | ||
# Used in Lambda functions. Also copied to lambda/requirements-lambda.txt. | ||
strict-rfc3339 | ||
publicsuffix |