cjb97 commited on
Commit
ed6d212
·
1 Parent(s): 4a671bb

chore: Add .gitignore file

Browse files
Files changed (1) hide show
  1. .gitignore +54 -0
.gitignore ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ build/
8
+ develop-eggs/
9
+ dist/
10
+ downloads/
11
+ eggs/
12
+ .eggs/
13
+ lib/
14
+ lib64/
15
+ parts/
16
+ sdist/
17
+ var/
18
+ wheels/
19
+ *.egg-info/
20
+ .installed.cfg
21
+ *.egg
22
+
23
+ # Virtual Environment
24
+ venv/
25
+ env/
26
+ ENV/
27
+
28
+ # IDE
29
+ .idea/
30
+ .vscode/
31
+ *.swp
32
+ *.swo
33
+ .project
34
+ .pydevproject
35
+ .settings/
36
+
37
+ # Testing
38
+ .coverage
39
+ coverage.xml
40
+ htmlcov/
41
+ .pytest_cache/
42
+ .tox/
43
+
44
+ # Environment variables
45
+ .env
46
+ .env.*
47
+
48
+ # Logs
49
+ *.log
50
+ logs/
51
+
52
+ # OS-specific
53
+ .DS_Store
54
+ Thumbs.db