blob: 24ddad5785a53da2337f87bcf23605f2a0b7eec1 [file] [log] [blame]
Patrick Williams7f997092020-06-01 10:44:44 -05001# Meson build directories.
2/build*/
William A. Kennington III8890e452018-06-26 11:46:11 -07003
Patrick Williams7f997092020-06-01 10:44:44 -05004# Created by https://www.gitignore.io/api/vim,python
5# Edit at https://www.gitignore.io/?templates=vim,python
William A. Kennington III8890e452018-06-26 11:46:11 -07006
Patrick Williams7f997092020-06-01 10:44:44 -05007### Python ###
8# Byte-compiled / optimized / DLL files
9__pycache__/
10*.py[cod]
11*$py.class
William A. Kennington III8890e452018-06-26 11:46:11 -070012
Patrick Williams7f997092020-06-01 10:44:44 -050013# C extensions
14*.so
William A. Kennington III8890e452018-06-26 11:46:11 -070015
Patrick Williams7f997092020-06-01 10:44:44 -050016# 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
William A. Kennington III8890e452018-06-26 11:46:11 -070036
Patrick Williams7f997092020-06-01 10:44:44 -050037# 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 III8890e452018-06-26 11:46:11 -070042
Patrick Williams7f997092020-06-01 10:44:44 -050043# Installer logs
44pip-log.txt
45pip-delete-this-directory.txt
William A. Kennington III8890e452018-06-26 11:46:11 -070046
Patrick Williams7f997092020-06-01 10:44:44 -050047# 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