From db94d7e11cbc540ed9916e23cef77b77fda409b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steven=20Maga=C3=B1a-Zook?= Date: Sat, 13 Mar 2021 16:21:53 -0800 Subject: [PATCH] Fixed the pip install command's package name Found the correct package name at https://pypi.org/project/py-pgp/ --- README.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 1ba9133..c353dbc 100644 --- a/README.rst +++ b/README.rst @@ -65,20 +65,20 @@ Installation ------------ :: - pip install pgp + pip install py-pgp with Twofish support:: - pip install pgp[twofish] + pip install py-pgp[twofish] with Camellia support:: - pip install pgp[camellia] + pip install py-pgp[camellia] with Twofish & Camellia support:: - pip install pgp[camellia,twofish] + pip install py-pgp[camellia,twofish] Usage -----