1# Meson build directories. 2/build*/ 3 4# Created by https://www.gitignore.io/api/vim,python 5# Edit at https://www.gitignore.io/?templates=vim,python 6 7### Python ### 8# Byte-compiled / optimized / DLL files 9__pycache__/ 10*.py[cod] 11*$py.class 12 13# C extensions 14*.so 15 16# Distribution / packaging 17.Python 18build/ 19develop-eggs/ 20dist/ 21downloads/ 22eggs/ 23.eggs/ 24lib/ 25lib64/ 26parts/ 27sdist/ 28var/ 29wheels/ 30pip-wheel-metadata/ 31share/python-wheels/ 32*.egg-info/ 33.installed.cfg 34*.egg 35MANIFEST 36 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 42 43# Installer logs 44pip-log.txt 45pip-delete-this-directory.txt 46 47# Unit test / coverage reports 48htmlcov/ 49.tox/ 50.nox/ 51.coverage 52.coverage.* 53.cache 54nosetests.xml 55coverage.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 68docs/_build/ 69 70# PyBuilder 71target/ 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 84celerybeat-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 107dmypy.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 121Session.vim 122Sessionx.vim 123 124# Temporary 125.netrwhist 126*~ 127 128# Auto-generated tag files 129tags 130 131# Persistent undo 132[._]*.un~ 133 134# Coc configuration directory 135.vim 136 137# End of https://www.gitignore.io/api/vim,python 138