diff --git a/README.md b/README.md index a325cd1..117e72d 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,10 @@ Python script for rendering a github users avatar in Terminal (requires ANSII color support) -This script does require the 'click' library to function. +To install requirements run: + +`$ pip install -r requirements.txt --user` + +A virtual enviroment in either env, pipenv or virtualenv is recommended Simply clone the repo and enter the following `python render-user.py getuser [USERNAME]` to have that users avatar rendered right in your terminal! diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..76b54a5 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +Click==7.0 +numpy==1.17.2 +Pillow==6.2.0 +requests==2.22.0 +urwid==2.0.1