From 3429b6d455b6f29bd01e8959b5e419e355bf7d4f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jean-Fran=C3=A7ois=20Nguyen?= Date: Mon, 30 Mar 2020 17:12:20 +0200 Subject: [PATCH] Move non-PyPI dependencies to requirements.txt --- README.md | 7 +------ requirements.txt | 5 +++++ 2 files changed, 6 insertions(+), 6 deletions(-) create mode 100644 requirements.txt diff --git a/README.md b/README.md index 2ac9f0d..0496fae 100644 --- a/README.md +++ b/README.md @@ -8,12 +8,7 @@ git clone https://github.com/lambdaconcept/lambdasoc git submodule update --init --recursive -pip install git+https://github.com/nmigen/nmigen-soc -pip install git+https://github.com/nmigen/nmigen-stdio -pip install git+https://github.com/nmigen/nmigen-boards -pip install git+https://github.com/lambdaconcept/minerva -pip install git+https://github.com/m-labs/asyncserial - +pip install -r requirements.txt python setup.py install ``` diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..e67fe22 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +git+https://github.com/nmigen/nmigen-soc +git+https://github.com/nmigen/nmigen-stdio +git+https://github.com/nmigen/nmigen-boards +git+https://github.com/lambdaconcept/minerva +git+https://github.com/m-labs/asyncserial -- 2.30.2