rapsoj commited on
Commit
e87269c
·
verified ·
1 Parent(s): a6ec964

Create .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +119 -0
.gitignore ADDED
@@ -0,0 +1,119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ *.egg-info/
23
+ .installed.cfg
24
+ *.egg
25
+
26
+ # Virtual environments
27
+ env/
28
+ venv/
29
+ ENV/
30
+ env.bak/
31
+ venv.bak/
32
+
33
+ # Jupyter Notebook checkpoints
34
+ .ipynb_checkpoints
35
+
36
+ # PyInstaller
37
+ # Usually these files are written by a python script from a template
38
+ *.manifest
39
+ *.spec
40
+
41
+ # pytest
42
+ .cache
43
+ .pytest_cache/
44
+
45
+ # MyPy
46
+ .mypy_cache/
47
+ .dmypy.json
48
+ dmypy.json
49
+
50
+ # Pyre type checker
51
+ .pyre/
52
+
53
+ # Coverage reports
54
+ htmlcov/
55
+ .tox/
56
+ .coverage
57
+ .coverage.*
58
+ .cache
59
+ nosetests.xml
60
+ coverage.xml
61
+ *.cover
62
+ *.py,cover
63
+
64
+ # Translations
65
+ *.mo
66
+ *.pot
67
+
68
+ # Django stuff:
69
+ *.log
70
+ local_settings.py
71
+ db.sqlite3
72
+ db.sqlite3-journal
73
+
74
+ # Flask stuff:
75
+ instance/
76
+ .webassets-cache
77
+
78
+ # Scrapy stuff:
79
+ .scrapy
80
+
81
+ # Sphinx documentation
82
+ docs/_build/
83
+
84
+ # PyBuilder
85
+ target/
86
+
87
+ # IPython
88
+ profile_default/
89
+ ipython_config.py
90
+
91
+ # Editors/IDEs
92
+ .vscode/
93
+ .idea/
94
+ *.sublime-project
95
+ *.sublime-workspace
96
+
97
+ # macOS
98
+ .DS_Store
99
+
100
+ # Windows
101
+ Thumbs.db
102
+ ehthumbs.db
103
+ Desktop.ini
104
+ $RECYCLE.BIN/
105
+
106
+ # Other system files
107
+ *.bak
108
+ *.tmp
109
+ *.swp
110
+ *.swo
111
+
112
+ # Logs
113
+ *.log
114
+
115
+ # Test results
116
+ test-output/
117
+
118
+ # VSCode Python environment
119
+ .python-version