From 55d58be9f93584d0d2788c435b00d42837eaa72b Mon Sep 17 00:00:00 2001 From: linarphy Date: Tue, 18 Jun 2024 17:16:14 +0200 Subject: [PATCH] Add make commands & requirements --- .gitignore | 1 + Makefile | 16 ++++++++++++++++ requirements.txt | 1 + 3 files changed, 18 insertions(+) create mode 100644 .gitignore create mode 100644 Makefile create mode 100644 requirements.txt diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..52146d6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +modules/ diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e026fcc --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +install: + mkdir -p modules + cd modules && git clone https://git.linarphy.net/linarphy/science_signal \ + && git clone https://git.linarphy.net/linarphy/command_parser \ + && git clone https://git.linarphy.net/linarphy/backscattering-analyzer + python -m pip install -e ./modules/science_signal + python -m pip install -e ./modules/command_parser + python -m pip install -e ./modules/backscattering-analyzer + python -m pip install -r requirements.txt + +clean: + python -m pip uninstall -r requirements.txt + python -m pip uninstall science_signal + python -m pip uninstall command_parser + python -m pip uninstall backscattering_analyzer + rm -rf modules diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..3f382dd --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +rich