diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-04-01 22:20:21 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-04-01 22:20:21 -0400 |
commit | 2a55e09ff82260c8e3f1283f325fa115fa39133b (patch) | |
tree | 3ad40e84ae2ac248a31e93fd2ec0e08976ebf70f /scripts/klippy-requirements.txt | |
parent | 2980c2e12cee218ac0851284f8b89083824585d8 (diff) | |
download | kutter-2a55e09ff82260c8e3f1283f325fa115fa39133b.tar.gz kutter-2a55e09ff82260c8e3f1283f325fa115fa39133b.tar.xz kutter-2a55e09ff82260c8e3f1283f325fa115fa39133b.zip |
scripts: Add a new klippy-requirements.txt file for virtualenv installs
Place all of the host software python requirements into a config file.
This makes it easier to update the python requirements without having
to update several installation scripts.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'scripts/klippy-requirements.txt')
-rw-r--r-- | scripts/klippy-requirements.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/klippy-requirements.txt b/scripts/klippy-requirements.txt new file mode 100644 index 00000000..94152f95 --- /dev/null +++ b/scripts/klippy-requirements.txt @@ -0,0 +1,7 @@ +# This file describes the Python virtualenv package requirements for +# the Klipper host software (Klippy). These package requirements are +# typically installed via the command: +# pip install -r virtualenv-requirements.txt +cffi==1.6.0 +pyserial==3.2.1 +greenlet==0.4.10 |