mozzic commited on
Commit
20bcb12
·
verified ·
1 Parent(s): c959c0d

Upload .hfignore with huggingface_hub

Browse files
Files changed (1) hide show
  1. .hfignore +49 -0
.hfignore ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Exclude development and local files
2
+ .venv/
3
+ __pycache__/
4
+ *.pyc
5
+ *.pyo
6
+ *.pyd
7
+ .Python
8
+ env/
9
+ venv/
10
+ .venv/
11
+ pip-log.txt
12
+ pip-delete-this-directory.txt
13
+ .tox/
14
+ .coverage
15
+ .coverage.*
16
+ .cache
17
+ nosetests.xml
18
+ coverage.xml
19
+ *.cover
20
+ *.log
21
+ .git
22
+ .mypy_cache
23
+ .pytest_cache
24
+ .hypothesis
25
+
26
+ # Exclude local data and cache files
27
+ data/
28
+ *.db
29
+ *.pkl
30
+ *.json
31
+ !demo_files/ # Keep demo files
32
+
33
+ # Exclude IDE files
34
+ .vscode/
35
+ .idea/
36
+ *.swp
37
+ *.swo
38
+
39
+ # Exclude OS files
40
+ .DS_Store
41
+ Thumbs.db
42
+
43
+ # Keep essential files
44
+ !requirements.txt
45
+ !app.py
46
+ !README.md
47
+ !src/
48
+ !ui/
49
+ !demo_files/