Create .gitignore
Browse files- .gitignore +101 -0
.gitignore
ADDED
@@ -0,0 +1,101 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# ------------------------------------------------------------------------------
|
2 |
+
# General
|
3 |
+
# ------------------------------------------------------------------------------
|
4 |
+
# MacOS files
|
5 |
+
.DS_Store
|
6 |
+
|
7 |
+
# Windows thumbnail cache
|
8 |
+
Thumbs.db
|
9 |
+
|
10 |
+
# ------------------------------------------------------------------------------
|
11 |
+
# Python Bytecode
|
12 |
+
# ------------------------------------------------------------------------------
|
13 |
+
__pycache__/
|
14 |
+
*.py[cod]
|
15 |
+
*$py.class
|
16 |
+
|
17 |
+
# ------------------------------------------------------------------------------
|
18 |
+
# Virtual Environments
|
19 |
+
# ------------------------------------------------------------------------------
|
20 |
+
env/
|
21 |
+
venv/
|
22 |
+
ENV/
|
23 |
+
.venv/
|
24 |
+
.venv-*/ # In case you name your envs with suffixes like .venv-3.9
|
25 |
+
|
26 |
+
# ------------------------------------------------------------------------------
|
27 |
+
# Distribution / Packaging
|
28 |
+
# ------------------------------------------------------------------------------
|
29 |
+
.Python
|
30 |
+
build/
|
31 |
+
develop-eggs/
|
32 |
+
dist/
|
33 |
+
eggs/
|
34 |
+
sdist/
|
35 |
+
*.egg-info/
|
36 |
+
.installed.cfg
|
37 |
+
*.egg
|
38 |
+
|
39 |
+
# ------------------------------------------------------------------------------
|
40 |
+
# Installer Logs
|
41 |
+
# ------------------------------------------------------------------------------
|
42 |
+
pip-log.txt
|
43 |
+
pip-delete-this-directory.txt
|
44 |
+
|
45 |
+
# ------------------------------------------------------------------------------
|
46 |
+
# PyInstaller
|
47 |
+
# ------------------------------------------------------------------------------
|
48 |
+
# Usually these files are written to a folder named `dist`
|
49 |
+
# However, if you specify a different build directory, you may want to exclude it here as well.
|
50 |
+
*.manifest
|
51 |
+
*.spec
|
52 |
+
|
53 |
+
# ------------------------------------------------------------------------------
|
54 |
+
# Test & Coverage
|
55 |
+
# ------------------------------------------------------------------------------
|
56 |
+
.coverage
|
57 |
+
coverage.xml
|
58 |
+
htmlcov/
|
59 |
+
.tox/
|
60 |
+
.pytest_cache/
|
61 |
+
nosetests.xml
|
62 |
+
test.sqlite
|
63 |
+
|
64 |
+
# ------------------------------------------------------------------------------
|
65 |
+
# MyPy
|
66 |
+
# ------------------------------------------------------------------------------
|
67 |
+
.mypy_cache/
|
68 |
+
.dmypy.json
|
69 |
+
dmypy.json
|
70 |
+
|
71 |
+
# ------------------------------------------------------------------------------
|
72 |
+
# Jupyter Notebooks
|
73 |
+
# ------------------------------------------------------------------------------
|
74 |
+
# You generally do NOT want to ignore your actual .ipynb notebook files
|
75 |
+
# unless they're automatically generated or shouldn't be committed.
|
76 |
+
# However, the following will ignore Jupyter's checkpoint directories.
|
77 |
+
.ipynb_checkpoints/
|
78 |
+
.jupyter_cache/
|
79 |
+
|
80 |
+
# ------------------------------------------------------------------------------
|
81 |
+
# Editors and IDEs
|
82 |
+
# ------------------------------------------------------------------------------
|
83 |
+
# VS Code
|
84 |
+
.vscode/
|
85 |
+
.history/
|
86 |
+
*.code-workspace
|
87 |
+
|
88 |
+
# PyCharm
|
89 |
+
.idea/
|
90 |
+
*.iml
|
91 |
+
|
92 |
+
# Vim / Emacs
|
93 |
+
*~
|
94 |
+
*.swp
|
95 |
+
*.swo
|
96 |
+
|
97 |
+
# JetBrains
|
98 |
+
*.idea/
|
99 |
+
*.ipr
|
100 |
+
*.iws
|
101 |
+
out/
|