FrenchCastle commited on
Commit
29280ee
·
verified ·
1 Parent(s): 5d0083e

docs: exclude tool caches (__pycache__, .ruff_cache, .pytest_cache, egg-info) in documented publish command

Browse files
Files changed (1) hide show
  1. pipeline/README.md +2 -1
pipeline/README.md CHANGED
@@ -26,7 +26,8 @@ uv venv --python 3.12 .venv && uv pip install --python .venv/bin/python -e ".[de
26
  Publishing (only after reviewing `hf_dataset/`):
27
 
28
  ```bash
29
- hf upload <namespace>/<dataset-name> hf_dataset . --repo-type dataset --exclude "__pycache__/*" "*.pyc"
 
30
  ```
31
 
32
  ## Layout
 
26
  Publishing (only after reviewing `hf_dataset/`):
27
 
28
  ```bash
29
+ hf upload <namespace>/<dataset-name> hf_dataset . --repo-type dataset \
30
+ --exclude "*.pyc" "*__pycache__/*" "*.ruff_cache/*" "*.pytest_cache/*" "*.egg-info/*"
31
  ```
32
 
33
  ## Layout