gangel commited on
Commit
881628d
·
1 Parent(s): 15c9677

Add gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +53 -0
.gitignore ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ dist/
11
+ build/
12
+ *.egg-info/
13
+
14
+ # Unit test / coverage reports
15
+ htmlcov/
16
+ .tox/
17
+ .coverage
18
+ .coverage.*
19
+ .cache
20
+ nosetests.xml
21
+ coverage.xml
22
+ *.cover
23
+
24
+ # Jupyter Notebook
25
+ .ipynb_checkpoints
26
+
27
+ # Virtual environments
28
+ venv/
29
+ env/
30
+ ENV/
31
+ .env
32
+ .venv
33
+
34
+ # IDE specific files
35
+ .idea/
36
+ .vscode/
37
+ *.swp
38
+ *.swo
39
+
40
+ # Environments
41
+ .env
42
+ .venv
43
+
44
+ # PyCharm specific
45
+ .idea/
46
+ *.iml
47
+
48
+ # macOS specific
49
+ .DS_Store
50
+
51
+ # Project specific
52
+ *.log
53
+ logs/