Coding style.

- Use a standard requirements.txt file for python dependencies.
This commit is contained in:
Andrew Hamilton 2021-10-31 16:12:57 +10:00
parent 2335dec922
commit ba1d6b62bb
2 changed files with 10 additions and 2 deletions

View file

@ -10,8 +10,8 @@ if [ $DIST_ID != "ubuntu" ]; then
exit 1
fi
echo "Installing the dependencies of the eris script…"
sudo apt --yes install python3-pip python3.9 util-linux python3-cwcwidth
python3.9 -m pip install pyinotify pygments docopt pillow toml decorator pexpect
sudo apt --yes install python3-pip python3.9 util-linux
python3.9 -m pip install -r requirements.txt
echo
echo "Installing all the tools eris may need…"
./install-tools

8
requirements.txt Normal file
View file

@ -0,0 +1,8 @@
pyinotify
pygments
docopt
pillow
toml
decorator
pexpect
cwcwidth