From 1625b8ec0cdd697fd0b72090083f4411814cc97e Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Sat, 25 Apr 2020 19:43:22 -0400 Subject: README.md: Add 'installation' section. --- README.md | 11 +++++++++-- acmens.py | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5bf0d64..5ad530f 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,13 @@ It's meant to be run locally from your computer. * openssl or libressl * python3 +* pip + +## installation + +```sh +pip install acmens +``` ## getting/renewing a certificate @@ -44,7 +51,7 @@ account private key, email address, and the domain CSR. The paths can be relative or absolute. ```sh -python3 acmens.py --account-key user.key --email mail@example.com --csr domain.csr > signed.crt +acmens --account-key user.key --email mail@example.com --csr domain.csr > signed.crt ``` When you run the script, it will: @@ -73,5 +80,5 @@ account key and the signed domain certificate. The paths can be relative or absolute. ```sh -python3 acmens.py --revoke -k user.key --crt domain.crt +acmens --revoke -k user.key --crt domain.crt ``` diff --git a/acmens.py b/acmens.py index ecac6be..037defd 100644 --- a/acmens.py +++ b/acmens.py @@ -13,7 +13,7 @@ from urllib.request import urlopen from urllib.error import HTTPError -__version__ = '0.1.0.dev1' +__version__ = '0.1.0.dev2' def sign_csr(account_key, csr, email=None): -- cgit v1.2.3