Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .isort.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ import_heading_thirdparty=Third-Party Libraries
import_heading_firstparty=cisagov Libraries

# Should be auto-populated by seed-isort-config hook
known_third_party=docopt,github,keyring,nacl,requests,setuptools,schema
known_third_party=boto3,docopt,github,keyring,nacl,requests,setuptools,schema
# These must be manually set to correctly separate them from third party libraries
known_first_party=
4 changes: 1 addition & 3 deletions project_setup/scripts/ssm-param
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,8 @@ from os import path
import sys

# Third-Party Libraries
import docopt

# cisagov Libraries
import boto3
import docopt

REGIONS = ["us-east-1", "us-east-2", "us-west-1", "us-west-2"]

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ def package_vars(version_file):
# What does your project relate to?
keywords="documentation",
install_requires=[
"boto3",
"docopt",
"keyring",
"PyNaCl",
Expand Down