Mykhailo Shtopko commited on
Commit
7d9eaa8
·
1 Parent(s): 2d744f8

.gitignore add

Browse files
Files changed (1) hide show
  1. .gitignore +87 -0
.gitignore ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Virtual environments
10
+ .venv/
11
+ venv/
12
+ ENV/
13
+ env/
14
+ env.bak/
15
+ venv.bak/
16
+
17
+ # Jupyter Notebook checkpoints
18
+ .ipynb_checkpoints
19
+
20
+ # PyInstaller
21
+ *.manifest
22
+ *.spec
23
+
24
+ # Installer logs
25
+ pip-log.txt
26
+ pip-delete-this-directory.txt
27
+
28
+ # Unit test / coverage reports
29
+ htmlcov/
30
+ .tox/
31
+ .nox/
32
+ .coverage
33
+ .coverage.*
34
+ .cache
35
+ nosetests.xml
36
+ coverage.xml
37
+ *.cover
38
+ .hypothesis/
39
+ .pytest_cache/
40
+
41
+ # Translations
42
+ *.mo
43
+ *.pot
44
+
45
+ # Django stuff
46
+ *.log
47
+ local_settings.py
48
+ db.sqlite3
49
+
50
+ # Flask stuff
51
+ instance/
52
+ .webassets-cache
53
+
54
+ # Scrapy stuff
55
+ .scrapy
56
+
57
+ # Sphinx documentation
58
+ docs/_build/
59
+
60
+ # PyBuilder
61
+ target/
62
+
63
+ # mypy
64
+ .mypy_cache/
65
+ .dmypy.json
66
+ dmypy.json
67
+
68
+ # Pyre
69
+ .pyre/
70
+
71
+ # VS Code
72
+ .vscode/
73
+
74
+ # PyCharm
75
+ .idea/
76
+
77
+ # macOS
78
+ .DS_Store
79
+
80
+ # Windows
81
+ Thumbs.db
82
+ ehthumbs.db
83
+ Desktop.ini
84
+
85
+ # Environments
86
+ .env
87
+ .env.*