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