Skip to content

Commit 962bff1

Browse files
committed
Add Python and VirtualEnv templates into .gitignore
1 parent f3f3292 commit 962bff1

File tree

1 file changed

+151
-0
lines changed

1 file changed

+151
-0
lines changed

.gitignore

Lines changed: 151 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,3 +115,154 @@ Sessionx.vim
115115
tags
116116
# Persistent undo
117117
[._]*.un~
118+
119+
# ##############################################################################
120+
# Python
121+
# ##############################################################################
122+
123+
# Byte-compiled / optimized / DLL files
124+
__pycache__/
125+
*.py[cod]
126+
*$py.class
127+
128+
# C extensions
129+
*.so
130+
131+
# Distribution / packaging
132+
.Python
133+
build/
134+
develop-eggs/
135+
dist/
136+
downloads/
137+
eggs/
138+
.eggs/
139+
lib/
140+
lib64/
141+
parts/
142+
sdist/
143+
var/
144+
wheels/
145+
pip-wheel-metadata/
146+
share/python-wheels/
147+
*.egg-info/
148+
.installed.cfg
149+
*.egg
150+
MANIFEST
151+
152+
# PyInstaller
153+
# Usually these files are written by a python script from a template
154+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
155+
*.manifest
156+
*.spec
157+
158+
# Installer logs
159+
pip-log.txt
160+
pip-delete-this-directory.txt
161+
162+
# Unit test / coverage reports
163+
htmlcov/
164+
.tox/
165+
.nox/
166+
.coverage
167+
.coverage.*
168+
.cache
169+
nosetests.xml
170+
coverage.xml
171+
*.cover
172+
*.py,cover
173+
.hypothesis/
174+
.pytest_cache/
175+
176+
# Translations
177+
*.mo
178+
*.pot
179+
180+
# Django stuff:
181+
*.log
182+
local_settings.py
183+
db.sqlite3
184+
db.sqlite3-journal
185+
186+
# Flask stuff:
187+
instance/
188+
.webassets-cache
189+
190+
# Scrapy stuff:
191+
.scrapy
192+
193+
# Sphinx documentation
194+
docs/_build/
195+
196+
# PyBuilder
197+
target/
198+
199+
# Jupyter Notebook
200+
.ipynb_checkpoints
201+
202+
# IPython
203+
profile_default/
204+
ipython_config.py
205+
206+
# pyenv
207+
.python-version
208+
209+
# pipenv
210+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
211+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
212+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
213+
# install all needed dependencies.
214+
#Pipfile.lock
215+
216+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
217+
__pypackages__/
218+
219+
# Celery stuff
220+
celerybeat-schedule
221+
celerybeat.pid
222+
223+
# SageMath parsed files
224+
*.sage.py
225+
226+
# Environments
227+
.env
228+
.venv
229+
env/
230+
venv/
231+
ENV/
232+
env.bak/
233+
venv.bak/
234+
235+
# Spyder project settings
236+
.spyderproject
237+
.spyproject
238+
239+
# Rope project settings
240+
.ropeproject
241+
242+
# mkdocs documentation
243+
/site
244+
245+
# mypy
246+
.mypy_cache/
247+
.dmypy.json
248+
dmypy.json
249+
250+
# Pyre type checker
251+
.pyre/
252+
253+
# ##############################################################################
254+
# VirtualEnv
255+
# ##############################################################################
256+
257+
# Virtualenv
258+
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
259+
.Python
260+
[Bb]in
261+
[Ii]nclude
262+
[Ll]ib
263+
[Ll]ib64
264+
[Ll]ocal
265+
[Ss]cripts
266+
pyvenv.cfg
267+
.venv
268+
pip-selfcheck.json

0 commit comments

Comments
 (0)