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