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