Add make commands & requirements

This commit is contained in:
linarphy 2024-06-18 17:16:14 +02:00
parent 60d2c1ca9c
commit 55d58be9f9
No known key found for this signature in database
GPG key ID: E61920135EFF2295
3 changed files with 18 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
modules/

16
Makefile Normal file
View file

@ -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

1
requirements.txt Normal file
View file

@ -0,0 +1 @@
rich