2020sdist /
2121var /
2222wheels /
23- pip-wheel-metadata /
2423share /python-wheels /
2524* .egg-info /
2625.installed.cfg
@@ -50,6 +49,7 @@ coverage.xml
5049* .py,cover
5150.hypothesis /
5251.pytest_cache /
52+ cover /
5353
5454# Translations
5555* .mo
@@ -72,6 +72,7 @@ instance/
7272docs /_build /
7373
7474# PyBuilder
75+ .pybuilder /
7576target /
7677
7778# Jupyter Notebook
@@ -82,7 +83,9 @@ profile_default/
8283ipython_config.py
8384
8485# pyenv
85- .python-version
86+ # For a library or package, you might want to ignore these files since the code is
87+ # intended to run in multiple environments; otherwise, check them in:
88+ # .python-version
8689
8790# pipenv
8891# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
@@ -91,7 +94,22 @@ ipython_config.py
9194# install all needed dependencies.
9295# Pipfile.lock
9396
94- # PEP 582; used by e.g. github.com/David-OConnor/pyflow
97+ # poetry
98+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100+ # commonly ignored for libraries.
101+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102+ # poetry.lock
103+
104+ # pdm
105+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106+ # pdm.lock
107+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108+ # in version control.
109+ # https://pdm.fming.dev/#use-with-ide
110+ .pdm.toml
111+
112+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
95113__pypackages__ /
96114
97115# Celery stuff
@@ -127,3 +145,16 @@ dmypy.json
127145
128146# Pyre type checker
129147.pyre /
148+
149+ # pytype static type analyzer
150+ .pytype /
151+
152+ # Cython debug symbols
153+ cython_debug /
154+
155+ # PyCharm
156+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
157+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
158+ # and can be added to the global gitignore or merged into this file. For a more nuclear
159+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
160+ # .idea/
0 commit comments