mirror of
https://github.com/Z4nzu/hackingtool
synced 2024-11-14 11:53:01 +00:00
requirement.txt --> requirements.txt
This commit is contained in:
parent
608fea3eb1
commit
d201837d51
2
.github/workflows/lint_python.yml
vendored
2
.github/workflows/lint_python.yml
vendored
@ -17,7 +17,7 @@ jobs:
|
|||||||
- run: flake8 --ignore=E124,E128,E225,E251,E302,R502,R503,W291,W293,W605
|
- run: flake8 --ignore=E124,E128,E225,E251,E302,R502,R503,W291,W293,W605
|
||||||
--max-complexity=11 --max-line-length=265 --show-source --statistics .
|
--max-complexity=11 --max-line-length=265 --show-source --statistics .
|
||||||
- run: isort --check-only --profile black . || true
|
- run: isort --check-only --profile black . || true
|
||||||
- run: pip install -r requirement.txt || pip install -r requirements.txt || pip install --editable . || pip install . || true
|
- run: pip install -r requirements.txt || pip install -r requirements.txt || pip install --editable . || pip install . || true
|
||||||
- run: mkdir --parents --verbose .mypy_cache
|
- run: mkdir --parents --verbose .mypy_cache
|
||||||
- run: mypy --ignore-missing-imports --install-types --non-interactive . || true
|
- run: mypy --ignore-missing-imports --install-types --non-interactive . || true
|
||||||
- run: pytest . || true
|
- run: pytest . || true
|
||||||
|
@ -11,7 +11,7 @@ WORKDIR /root/hackingtool
|
|||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
RUN true && \
|
RUN true && \
|
||||||
pip3 install -r requirement.txt;
|
pip3 install -r requirements.txt;
|
||||||
|
|
||||||
RUN true && \
|
RUN true && \
|
||||||
pip3 install lolcat boxes flask requests;
|
pip3 install lolcat boxes flask requests;
|
||||||
|
@ -218,7 +218,7 @@
|
|||||||
|
|
||||||
cd hackingtool
|
cd hackingtool
|
||||||
|
|
||||||
sudo pip3 install -r requirement.txt
|
sudo pip3 install -r requirements.txt
|
||||||
|
|
||||||
bash install.sh
|
bash install.sh
|
||||||
|
|
||||||
|
@ -39,7 +39,7 @@
|
|||||||
|
|
||||||
cd hackingtool
|
cd hackingtool
|
||||||
|
|
||||||
sudo pip3 install -r requirement.txt
|
sudo pip3 install -r requirements.txt
|
||||||
|
|
||||||
bash install.sh
|
bash install.sh
|
||||||
|
|
||||||
|
@ -104,10 +104,10 @@ if [[ $choice =~ ^[1-2]+$ ]]; then
|
|||||||
echo "";
|
echo "";
|
||||||
echo -e "${YELLOW}[*] Installing requirements...${NC}"
|
echo -e "${YELLOW}[*] Installing requirements...${NC}"
|
||||||
if [[ $choice == 1 ]]; then
|
if [[ $choice == 1 ]]; then
|
||||||
pip3 install -r $install_dir/requirement.txt
|
pip3 install -r $install_dir/requirements.txt
|
||||||
sudo apt install figlet -y
|
sudo apt install figlet -y
|
||||||
elif [[ $choice == 2 ]]; then
|
elif [[ $choice == 2 ]]; then
|
||||||
pip3 install -r $install_dir/requirement.txt
|
pip3 install -r $install_dir/requirements.txt
|
||||||
yay -S boxes --noconfirm
|
yay -S boxes --noconfirm
|
||||||
sudo pacman -S figlet -y
|
sudo pacman -S figlet -y
|
||||||
fi
|
fi
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
lolcat
|
|
||||||
boxes
|
boxes
|
||||||
flask
|
flask
|
||||||
requests
|
lolcat
|
||||||
|
requests
|
Loading…
Reference in New Issue
Block a user