AbstractPhil commited on
Commit
64343c7
·
1 Parent(s): 1b2aa79
Files changed (1) hide show
  1. .gitignore +118 -1
.gitignore CHANGED
@@ -1 +1,118 @@
1
- __pycache__
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+ *.pyd
9
+ *.dll
10
+
11
+ # Distribution / packaging
12
+ build/
13
+ dist/
14
+ *.egg-info/
15
+ .eggs/
16
+ *.manifest
17
+ *.spec
18
+ pip-wheel-metadata/
19
+
20
+ # Virtual environment
21
+ .venv/
22
+ venv/
23
+ ENV/
24
+ env/
25
+ env.bak/
26
+
27
+ # Installer logs
28
+ pip-log.txt
29
+ pip-delete-this-directory.txt
30
+
31
+ # PyInstaller
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Unit test / coverage
36
+ htmlcov/
37
+ .tox/
38
+ .nox/
39
+ .coverage
40
+ .coverage.*
41
+ .cache
42
+ nosetests.xml
43
+ coverage.xml
44
+ *.cover
45
+ *.py,cover
46
+
47
+ # mypy
48
+ .mypy_cache/
49
+ .dmypy.json
50
+ dmypy.json
51
+
52
+ # Pyre
53
+ .pyre/
54
+
55
+ # Pyright
56
+ pyrightconfig.json
57
+
58
+ # Pytest
59
+ .pytest_cache/
60
+
61
+ # Jupyter Notebook
62
+ .ipynb_checkpoints
63
+
64
+ # IPython
65
+ profile_default/
66
+ ipython_config.py
67
+
68
+ # PyCharm
69
+ .idea/
70
+ *.iml
71
+
72
+ # VSCode
73
+ .vscode/
74
+
75
+ # macOS
76
+ .DS_Store
77
+
78
+ # Windows
79
+ Thumbs.db
80
+ ehthumbs.db
81
+ desktop.ini
82
+
83
+ # dotenv
84
+ .env
85
+ .env.*
86
+
87
+ # Hugging Face Spaces
88
+ spaces_env.json
89
+ spaces/
90
+ zero_cache/
91
+
92
+ # Local dev overrides
93
+ local_settings.py
94
+ secret_config.json
95
+
96
+ # Logs
97
+ *.log
98
+ logs/
99
+
100
+ # Temporary files
101
+ *.bak
102
+ *.tmp
103
+ *.swp
104
+ *.swo
105
+ *~
106
+
107
+ # Generated images or data
108
+ *.png
109
+ *.jpg
110
+ *.jpeg
111
+ *.webp
112
+ *.csv
113
+ *.npz
114
+ *.parquet
115
+ *.h5
116
+ *.pt
117
+ *.ckpt
118
+ *.safetensors