From: Jean-François Nguyen Date: Mon, 30 Mar 2020 15:12:20 +0000 (+0200) Subject: Move non-PyPI dependencies to requirements.txt X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3429b6d455b6f29bd01e8959b5e419e355bf7d4f;p=lambdasoc.git Move non-PyPI dependencies to 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