|
| 1 | +# Originally created by .ignore support plugin (hsz.mobi) |
| 2 | + |
| 3 | +### Python template |
| 4 | +# Byte-compiled / optimized / DLL files |
| 5 | +__pycache__/ |
| 6 | +*pycache* |
| 7 | +*.py[cod] |
| 8 | +*$py.class |
| 9 | + |
| 10 | +# C extensions |
| 11 | +*.so |
| 12 | + |
| 13 | +# Distribution / packaging |
| 14 | +.Python |
| 15 | +build/ |
| 16 | +develop-eggs/ |
| 17 | +dist/ |
| 18 | +downloads/ |
| 19 | +eggs/ |
| 20 | +.eggs/ |
| 21 | +lib/ |
| 22 | +lib64/ |
| 23 | +parts/ |
| 24 | +sdist/ |
| 25 | +var/ |
| 26 | +wheels/ |
| 27 | +pip-wheel-metadata/ |
| 28 | +share/python-wheels/ |
| 29 | +*.egg-info/ |
| 30 | +.installed.cfg |
| 31 | +*.egg |
| 32 | +MANIFEST |
| 33 | + |
| 34 | +# PyInstaller |
| 35 | +# Usually these files are written by a python script from a template |
| 36 | +# before PyInstaller builds the exe, so as to inject date/other infos into it. |
| 37 | +*.manifest |
| 38 | +*.spec |
| 39 | + |
| 40 | +# Installer logs |
| 41 | +pip-log.txt |
| 42 | +pip-delete-this-directory.txt |
| 43 | + |
| 44 | +# Unit test / coverage reports |
| 45 | +htmlcov/ |
| 46 | +.tox/ |
| 47 | +.nox/ |
| 48 | +.coverage |
| 49 | +.coverage.* |
| 50 | +.cache |
| 51 | +nosetests.xml |
| 52 | +coverage.xml |
| 53 | +*.cover |
| 54 | +.hypothesis/ |
| 55 | +.pytest_cache/ |
| 56 | + |
| 57 | +# Translations |
| 58 | +*.mo |
| 59 | +*.pot |
| 60 | + |
| 61 | +# Django stuff: |
| 62 | +*.log |
| 63 | +local_settings.py |
| 64 | +db.sqlite3 |
| 65 | +db.sqlite3-journal |
| 66 | + |
| 67 | +# Flask stuff: |
| 68 | +instance/ |
| 69 | +.webassets-cache |
| 70 | + |
| 71 | +# Scrapy stuff: |
| 72 | +.scrapy |
| 73 | + |
| 74 | +# Sphinx build directory and sphinx-gallery generated documents |
| 75 | +docs/_build/ |
| 76 | +doc/_build/ |
| 77 | +doc_build/ |
| 78 | +.doc_build |
| 79 | +.doc_build/ |
| 80 | +.docs/gallery |
| 81 | +.docs/gallery/ |
| 82 | +.docs/gen_modules |
| 83 | +.docs/gen_modules/ |
| 84 | + |
| 85 | +# PyBuilder |
| 86 | +target/ |
| 87 | + |
| 88 | +# Jupyter Notebook |
| 89 | +.ipynb_checkpoints/ |
| 90 | + |
| 91 | +# IPython |
| 92 | +profile_default/ |
| 93 | +ipython_config.py |
| 94 | + |
| 95 | +# pyenv |
| 96 | +.python-version |
| 97 | + |
| 98 | + |
| 99 | +# celery beat schedule file |
| 100 | +celerybeat-schedule |
| 101 | + |
| 102 | +# SageMath parsed files |
| 103 | +*.sage.py |
| 104 | + |
| 105 | +# Environments |
| 106 | +.env |
| 107 | +.venv |
| 108 | +env/ |
| 109 | +venv/ |
| 110 | +ENV/ |
| 111 | +env.bak/ |
| 112 | +venv.bak/ |
| 113 | + |
| 114 | +# Spyder project settings |
| 115 | +.spyderproject |
| 116 | +.spyproject |
| 117 | + |
| 118 | +# Rope project settings |
| 119 | +.ropeproject |
| 120 | + |
| 121 | +# mkdocs documentation |
| 122 | +site/ |
| 123 | + |
| 124 | +# mypy |
| 125 | +.mypy_cache/ |
| 126 | +.dmypy.json |
| 127 | +dmypy.json |
| 128 | + |
| 129 | +# Pyre type checker |
| 130 | +.pyre/ |
| 131 | + |
| 132 | +### JetBrains template |
| 133 | +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm |
| 134 | +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 |
| 135 | + |
| 136 | +# User-specific stuff |
| 137 | + |
| 138 | +# *.iml |
| 139 | +# *.ipr |
| 140 | + |
| 141 | +# CMake |
| 142 | +cmake-build-*/ |
| 143 | + |
| 144 | +# File-based project format |
| 145 | +*.iws |
| 146 | + |
| 147 | +# IntelliJ |
| 148 | +.idea/ |
| 149 | +out/ |
| 150 | +.idea_modules/ |
| 151 | + |
| 152 | +# JIRA plugin |
| 153 | +atlassian-ide-plugin.xml |
| 154 | + |
| 155 | +# Crashlytics plugin (for Android Studio and IntelliJ) |
| 156 | +com_crashlytics_export_strings.xml |
| 157 | +crashlytics.properties |
| 158 | +crashlytics-build.properties |
| 159 | +fabric.properties |
| 160 | + |
| 161 | +### macOS template |
| 162 | +# General |
| 163 | +.DS_Store |
| 164 | +.AppleDouble |
| 165 | +.LSOverride |
| 166 | + |
| 167 | +# Icon must end with two \r |
| 168 | +Icon |
| 169 | + |
| 170 | +# Thumbnails |
| 171 | +._* |
| 172 | + |
| 173 | +# Files that might appear in the root of a volume |
| 174 | +.DocumentRevisions-V100 |
| 175 | +.fseventsd |
| 176 | +.Spotlight-V100 |
| 177 | +.TemporaryItems |
| 178 | +.Trashes |
| 179 | +.VolumeIcon.icns |
| 180 | +.com.apple.timemachine.donotpresent |
| 181 | + |
| 182 | +# Directories potentially created on remote AFP share |
| 183 | +.AppleDB |
| 184 | +.AppleDesktop |
| 185 | +Network Trash Folder |
| 186 | +Temporary Items |
| 187 | +.apdisk |
| 188 | + |
| 189 | +### JupyterNotebooks template |
| 190 | +# gitignore template for Jupyter Notebooks |
| 191 | +# website: http://jupyter.org/ |
| 192 | + |
| 193 | +.ipynb_checkpoints |
| 194 | +*/.ipynb_checkpoints/* |
| 195 | + |
| 196 | +# Remove previous ipynb_checkpoints |
| 197 | +# git rm -r .ipynb_checkpoints/ |
| 198 | +# |
| 199 | + |
| 200 | +# VSCode |
| 201 | +.vscode |
| 202 | +.vscode/ |
| 203 | + |
| 204 | +# Neovim |
| 205 | +.nvimlog |
| 206 | +*.swap |
| 207 | + |
| 208 | +### OMC Users |
| 209 | +# files for testing things (jdilly convention) |
| 210 | +tst_* |
0 commit comments