Madhuslista commited on
Commit
ce93021
1 Parent(s): 62d1599

Feature: Add dev-requirements

Browse files
Files changed (2) hide show
  1. dev-requirements.txt +2 -0
  2. hf_cli.sh +2 -4
dev-requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ huggingface_hub[cli]
2
+ black
hf_cli.sh CHANGED
@@ -15,11 +15,9 @@ if [[ ! -d .venv ]]; then
15
  # Update pip
16
  python -m pip install -U pip
17
 
18
- # Install huggingface-cli
19
- pip install -U "huggingface_hub[cli]"
20
-
21
  # Install requirements
22
- # pip install -U -r pre-requirements.txt
23
  pip install -U -r requirements.txt
24
 
25
  fi
 
15
  # Update pip
16
  python -m pip install -U pip
17
 
18
+ # Install dev requirements
19
+ pip install -U -r dev-requirements.txt
 
20
  # Install requirements
 
21
  pip install -U -r requirements.txt
22
 
23
  fi