From 5541aab625c4d738fd3ed0c8d41c7bdf69e0847b Mon Sep 17 00:00:00 2001 From: Arvinda R Date: Thu, 28 Feb 2019 02:43:00 -0400 Subject: [PATCH] capture `pip install..` requirements (#38) --- README.md | 4 ++-- requirements.txt | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 requirements.txt diff --git a/README.md b/README.md index c67f016..13f291b 100644 --- a/README.md +++ b/README.md @@ -9,10 +9,10 @@ You need to have admin rights to control this node. By default this script connects to `localhost:10009`, using the macaroon file in `~/.lnd/data/chain/bitcoin/mainnet/admin.macaroon`. If you need to change this, please have a look at the sources. -You need to install Python and the gRPC dependencies: +You need to install Python. The gRPC dependencies can be installed by running: ``` -$ pip install grpcio googleapis-common-protos +$ pip install -r requirements.txt ``` ## Usage diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..68ebf5a --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +googleapis-common-protos==1.5.8 +grpcio==1.19.0 +protobuf==3.6.1 +six==1.12.0