Add make commands & requirements
This commit is contained in:
parent
60d2c1ca9c
commit
55d58be9f9
3 changed files with 18 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
modules/
|
16
Makefile
Normal file
16
Makefile
Normal 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
1
requirements.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
rich
|
Loading…
Reference in a new issue