Patrick Williams | 7f99709 | 2020-06-01 10:44:44 -0500 | [diff] [blame] | 1 | # Meson build directories. |
| 2 | /build*/ |
William A. Kennington III | adf0354 | 2020-06-04 03:01:11 -0700 | [diff] [blame] | 3 | /subprojects/*/ |
William A. Kennington III | 8890e45 | 2018-06-26 11:46:11 -0700 | [diff] [blame] | 4 | |
Patrick Williams | 7f99709 | 2020-06-01 10:44:44 -0500 | [diff] [blame] | 5 | # Created by https://www.gitignore.io/api/vim,python |
| 6 | # Edit at https://www.gitignore.io/?templates=vim,python |
William A. Kennington III | 8890e45 | 2018-06-26 11:46:11 -0700 | [diff] [blame] | 7 | |
Patrick Williams | 7f99709 | 2020-06-01 10:44:44 -0500 | [diff] [blame] | 8 | ### Python ### |
| 9 | # Byte-compiled / optimized / DLL files |
| 10 | __pycache__/ |
| 11 | *.py[cod] |
| 12 | *$py.class |
William A. Kennington III | 8890e45 | 2018-06-26 11:46:11 -0700 | [diff] [blame] | 13 | |
Patrick Williams | 7f99709 | 2020-06-01 10:44:44 -0500 | [diff] [blame] | 14 | # C extensions |
| 15 | *.so |
William A. Kennington III | 8890e45 | 2018-06-26 11:46:11 -0700 | [diff] [blame] | 16 | |
Patrick Williams | 7f99709 | 2020-06-01 10:44:44 -0500 | [diff] [blame] | 17 | # Distribution / packaging |
| 18 | .Python |
| 19 | build/ |
| 20 | develop-eggs/ |
| 21 | dist/ |
| 22 | downloads/ |
| 23 | eggs/ |
| 24 | .eggs/ |
| 25 | lib/ |
| 26 | lib64/ |
| 27 | parts/ |
| 28 | sdist/ |
| 29 | var/ |
| 30 | wheels/ |
| 31 | pip-wheel-metadata/ |
| 32 | share/python-wheels/ |
| 33 | *.egg-info/ |
| 34 | .installed.cfg |
| 35 | *.egg |
| 36 | MANIFEST |
William A. Kennington III | 8890e45 | 2018-06-26 11:46:11 -0700 | [diff] [blame] | 37 | |
Patrick Williams | 7f99709 | 2020-06-01 10:44:44 -0500 | [diff] [blame] | 38 | # PyInstaller |
| 39 | # Usually these files are written by a python script from a template |
| 40 | # before PyInstaller builds the exe, so as to inject date/other infos into it. |
| 41 | *.manifest |
| 42 | *.spec |
William A. Kennington III | 8890e45 | 2018-06-26 11:46:11 -0700 | [diff] [blame] | 43 | |
Patrick Williams | 7f99709 | 2020-06-01 10:44:44 -0500 | [diff] [blame] | 44 | # Installer logs |
| 45 | pip-log.txt |
| 46 | pip-delete-this-directory.txt |
William A. Kennington III | 8890e45 | 2018-06-26 11:46:11 -0700 | [diff] [blame] | 47 | |
Patrick Williams | 7f99709 | 2020-06-01 10:44:44 -0500 | [diff] [blame] | 48 | # Unit test / coverage reports |
| 49 | htmlcov/ |
| 50 | .tox/ |
| 51 | .nox/ |
| 52 | .coverage |
| 53 | .coverage.* |
| 54 | .cache |
| 55 | nosetests.xml |
| 56 | coverage.xml |
| 57 | *.cover |
| 58 | .hypothesis/ |
| 59 | .pytest_cache/ |
| 60 | |
| 61 | # Translations |
| 62 | *.mo |
| 63 | *.pot |
| 64 | |
| 65 | # Scrapy stuff: |
| 66 | .scrapy |
| 67 | |
| 68 | # Sphinx documentation |
| 69 | docs/_build/ |
| 70 | |
| 71 | # PyBuilder |
| 72 | target/ |
| 73 | |
| 74 | # pyenv |
| 75 | .python-version |
| 76 | |
| 77 | # pipenv |
| 78 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. |
| 79 | # However, in case of collaboration, if having platform-specific dependencies or dependencies |
| 80 | # having no cross-platform support, pipenv may install dependencies that don't work, or not |
| 81 | # install all needed dependencies. |
| 82 | #Pipfile.lock |
| 83 | |
| 84 | # celery beat schedule file |
| 85 | celerybeat-schedule |
| 86 | |
| 87 | # SageMath parsed files |
| 88 | *.sage.py |
| 89 | |
| 90 | # Spyder project settings |
| 91 | .spyderproject |
| 92 | .spyproject |
| 93 | |
| 94 | # Rope project settings |
| 95 | .ropeproject |
| 96 | |
| 97 | # Mr Developer |
| 98 | .mr.developer.cfg |
| 99 | .project |
| 100 | .pydevproject |
| 101 | |
| 102 | # mkdocs documentation |
| 103 | /site |
| 104 | |
| 105 | # mypy |
| 106 | .mypy_cache/ |
| 107 | .dmypy.json |
| 108 | dmypy.json |
| 109 | |
| 110 | # Pyre type checker |
| 111 | .pyre/ |
| 112 | |
| 113 | ### Vim ### |
| 114 | # Swap |
| 115 | [._]*.s[a-v][a-z] |
| 116 | [._]*.sw[a-p] |
| 117 | [._]s[a-rt-v][a-z] |
| 118 | [._]ss[a-gi-z] |
| 119 | [._]sw[a-p] |
| 120 | |
| 121 | # Session |
| 122 | Session.vim |
| 123 | Sessionx.vim |
| 124 | |
| 125 | # Temporary |
| 126 | .netrwhist |
| 127 | *~ |
| 128 | |
| 129 | # Auto-generated tag files |
| 130 | tags |
| 131 | |
| 132 | # Persistent undo |
| 133 | [._]*.un~ |
| 134 | |
| 135 | # Coc configuration directory |
| 136 | .vim |
| 137 | |
| 138 | # End of https://www.gitignore.io/api/vim,python |