rogerscuall commited on
Commit
4939b92
·
1 Parent(s): f1d7d4d

Add .gitignore file

Browse files
Files changed (1) hide show
  1. .gitignore +47 -0
.gitignore ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python bytecode
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # Distribution / packaging
7
+ dist/
8
+ build/
9
+ *.egg-info/
10
+
11
+ # Virtual environments
12
+ venv/
13
+ env/
14
+ ENV/
15
+ .venv/
16
+ .env/
17
+
18
+ # Local development settings
19
+ .env
20
+ .env.local
21
+
22
+ # IDE specific files
23
+ .idea/
24
+ .vscode/
25
+ *.swp
26
+ *.swo
27
+
28
+ # Jupyter Notebook
29
+ .ipynb_checkpoints
30
+
31
+ # macOS specific
32
+ .DS_Store
33
+
34
+ # Gradio specific
35
+ flagged/
36
+
37
+ # Logs
38
+ logs/
39
+ *.log
40
+
41
+ # Unit test / coverage reports
42
+ htmlcov/
43
+ .tox/
44
+ .coverage
45
+ .coverage.*
46
+ coverage.xml
47
+ *.cover