gitignore/Python.gitignore

162 lines
3.0 KiB
Plaintext
Raw Normal View History

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
2013-12-14 09:07:26 -05:00
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# PyInstaller
2014-08-15 07:16:24 -04:00
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
2014-02-22 04:48:38 -05:00
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
2013-10-22 06:17:22 -04:00
coverage.xml
2017-05-12 05:08:06 -04:00
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/
2012-08-18 12:55:23 -04:00
# Translations
*.mo
*.pot
2013-11-12 00:57:54 -05:00
# Django stuff:
*.log
2015-10-02 08:27:59 -04:00
local_settings.py
db.sqlite3
db.sqlite3-journal
2013-11-12 12:13:14 -05:00
2016-04-24 17:02:02 -04:00
# Flask stuff:
instance/
2016-04-24 17:02:02 -04:00
.webassets-cache
2015-06-05 11:43:20 -04:00
# Scrapy stuff:
.scrapy
2013-11-12 12:13:14 -05:00
# Sphinx documentation
docs/_build/
2014-06-15 02:49:06 -04:00
# PyBuilder
.pybuilder/
2014-06-15 02:49:06 -04:00
target/
2015-12-13 10:40:01 -05:00
# Jupyter Notebook
.ipynb_checkpoints
2016-01-27 17:46:49 -05:00
2018-08-22 05:33:41 -04:00
# IPython
profile_default/
2018-08-22 05:33:41 -04:00
ipython_config.py
2015-12-13 10:40:01 -05:00
# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version
2016-01-27 17:46:49 -05:00
# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock
# poetry
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
#poetry.lock
# pdm
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
#pdm.lock
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
# in version control.
# https://pdm.fming.dev/#use-with-ide
.pdm.toml
2023-04-09 12:25:17 -04:00
.pdm-python
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/
2019-11-08 16:06:39 -05:00
# Celery stuff
celerybeat-schedule
2019-11-08 16:06:39 -05:00
celerybeat.pid
2017-02-20 02:52:08 -05:00
# SageMath parsed files
*.sage.py
# Environments
2016-02-28 11:57:21 -05:00
.env
2017-02-01 11:50:44 -05:00
.venv
env/
2016-03-10 05:51:16 -05:00
venv/
ENV/
2017-06-21 11:45:53 -04:00
env.bak/
venv.bak/
2016-03-10 05:51:16 -05:00
# Spyder project settings
.spyderproject
.spyproject
# Rope project settings
.ropeproject
# mkdocs documentation
2017-04-01 03:38:52 -04:00
/site
2017-05-06 16:30:48 -04:00
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# Pyre type checker
.pyre/
# pytype static type analyzer
.pytype/
# Cython debug symbols
cython_debug/
# PyCharm
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/