This repository has been archived by the owner on Apr 21, 2023. It is now read-only.
forked from lyft/python-blessclient
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewrite get public IP to force use of IPv4
- Loading branch information
Ole Mathias Aa Heggem
committed
Feb 19, 2019
1 parent
897c91e
commit 7eee6e0
Showing
3 changed files
with
22 additions
and
13 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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
setup( | ||
name="blessclient", | ||
version="0.4.1", | ||
version="0.4.2", | ||
packages=find_packages(exclude=["test*"]), | ||
install_requires=[ | ||
'boto3>=1.4.0,<2.0.0', | ||
|
@@ -11,13 +11,14 @@ | |
'six', | ||
'hvac', | ||
'requests_aws_sign', | ||
'pycryptodomex' | ||
'pycryptodomex', | ||
'requests' | ||
], | ||
author="Chris Steipp", | ||
author_email="[email protected]", | ||
description="Issue temporary certificates for ssh, signed by the Netflix BLESS lambda.", | ||
description="Basefarm modified blessclient. Forked from lyft", | ||
license="apache2", | ||
url="https://github.com/lyft/python-blessclient", | ||
url="https://github.com/basefarm/python-blessclient", | ||
entry_points={ | ||
"console_scripts": [ | ||
"blessclient = blessclient.client:main", | ||
|