li-nguyen commited on
Commit
9ff5bf5
1 Parent(s): eccecd0

Copy over third batch version

Browse files
Files changed (1) hide show
  1. .gitignore +164 -0
.gitignore ADDED
@@ -0,0 +1,164 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # npm node_modules
3
+ node_modules/
4
+
5
+ # Ipynb
6
+ ipynb_checkpoints
7
+ */.ipynb_checkpoints/*
8
+
9
+ # IPython
10
+ profile_default/
11
+ ipython_config.py
12
+
13
+ # Byte-compiled / optimized / DLL files
14
+ __pycache__/
15
+ *.py[cod]
16
+ *$py.class
17
+
18
+ # C extensions
19
+ *.so
20
+
21
+ # Distribution / packaging
22
+ .Python
23
+ build/
24
+ develop-eggs/
25
+ dist/
26
+ downloads/
27
+ eggs/
28
+ .eggs/
29
+ lib/
30
+ lib64/
31
+ parts/
32
+ sdist/
33
+ var/
34
+ wheels/
35
+ share/python-wheels/
36
+ *.egg-info/
37
+ .installed.cfg
38
+ *.egg
39
+ MANIFEST
40
+
41
+ # macOS
42
+ *.DS_Store
43
+ .DS_Store
44
+ .AppleDouble
45
+ .LSOverride
46
+ .Trashes
47
+
48
+ # PyInstaller
49
+ *.manifest
50
+ *.spec
51
+
52
+ # Installer logs
53
+ pip-log.txt
54
+ pip-delete-this-directory.txt
55
+
56
+ # Unit test / coverage reports
57
+ htmlcov/
58
+ .tox/
59
+ .nox/
60
+ .coverage
61
+ .coverage.*
62
+ .cache
63
+ nosetests.xml
64
+ coverage.xml
65
+ *.cover
66
+ *.py,cover
67
+ .hypothesis/
68
+ .pytest_cache/
69
+ cover/
70
+
71
+ # Translations
72
+ *.mo
73
+ *.pot
74
+
75
+ # Django
76
+ *.log
77
+ local_settings.py
78
+ db.sqlite3
79
+ db.sqlite3-journal
80
+
81
+ # Flask
82
+ instance/
83
+ .webassets-cache
84
+
85
+ # Scrapy
86
+ .scrapy
87
+
88
+ # mkdocs
89
+ vizro-core/site
90
+ vizro-ai/site
91
+
92
+ # PyBuilder
93
+ .pybuilder/
94
+ target/
95
+
96
+ # IntelliJ
97
+ .idea/
98
+ *.iml
99
+ out/
100
+ .idea_modules/
101
+
102
+ # Vscode
103
+ .vscode/
104
+
105
+ # PEP 582
106
+ __pypackages__/
107
+
108
+ # Celery
109
+ celerybeat-schedule
110
+ celerybeat.pid
111
+
112
+ # SageMath
113
+ *.sage.py
114
+
115
+ # Environments
116
+ .env
117
+ .venv
118
+ env/
119
+ venv/
120
+ ENV/
121
+ env.bak/
122
+ venv.bak/
123
+
124
+ # Spyder
125
+ .spyderproject
126
+ .spyproject
127
+
128
+ # Rope
129
+ .ropeproject
130
+
131
+ # Mkdocs
132
+ /site
133
+
134
+ # Mypy
135
+ .mypy_cache/
136
+ .dmypy.json
137
+ dmypy.json
138
+
139
+ # Pyre
140
+ .pyre/
141
+
142
+ # Pytype
143
+ .pytype/
144
+
145
+ # Cython
146
+ cython_debug/
147
+
148
+ # Ruff
149
+ .ruff_cache/
150
+
151
+ # Ignore data files except for white-listed folders
152
+ *.csv
153
+ *.xls
154
+ *.xlsx
155
+ *.parquet
156
+ *.tsv
157
+ *.hdf5
158
+ *.h5
159
+ *.pickle
160
+ *.pkl
161
+ *.db
162
+ *.sqlite
163
+ *.sqlite3
164
+ *.orc