This repository has been archived on 2024-04-27. You can view files and clone it, but cannot push or open issues or pull requests.
autoytdlp/Makefile

31 lines
410 B
Makefile
Raw Permalink Normal View History

2023-02-08 14:01:47 +03:00
deps:
python3 -m pip install -r requirements.txt
2023-02-08 13:43:55 +03:00
run:
chmod +x ./autoytdlp.sh
./autoytdlp.sh
conv:
chmod +x ./convert.sh
./convert.sh
tags:
chmod +x ./id3tag.sh
./id3tag.sh
2023-02-08 16:31:25 +03:00
clean:
rm -rf __pycache__/
rm -rf .mypy_cache/
rm -f lyrics.txt input
rmfiles:
rm -rf files/
rm -rf convert/
2023-02-08 13:43:55 +03:00
pyformat:
python3 -m autopep8 --in-place .*.py
2023-02-08 13:43:55 +03:00
pycheck:
python3 -m mypy .*.py
python3 -m pylint -j4 .*.py