11# Byte-compiled / optimized / DLL files
22__pycache__ /
3- * .py [cod ]
3+ * .py [codz ]
44* $py.class
55
66# C extensions
2020sdist /
2121var /
2222wheels /
23- pip-wheel-metadata /
2423share /python-wheels /
25- * .egg-info /
24+ * .egg-info
2625.installed.cfg
2726* .egg
2827MANIFEST
@@ -47,9 +46,10 @@ htmlcov/
4746nosetests.xml
4847coverage.xml
4948* .cover
50- * .py, cover
49+ * .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,37 @@ 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+ # UV
98+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
99+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100+ # commonly ignored for libraries.
101+ # uv.lock
102+
103+ # poetry
104+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
105+ # This is especially recommended for binary packages to ensure reproducibility, and is more
106+ # commonly ignored for libraries.
107+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
108+ # poetry.lock
109+ # poetry.toml
110+
111+ # pdm
112+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
113+ # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
114+ # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
115+ # pdm.lock
116+ # pdm.toml
117+ .pdm-python
118+ .pdm-build /
119+
120+ # pixi
121+ # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
122+ # pixi.lock
123+ # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
124+ # in the .venv directory. It is recommended not to include this directory in version control.
125+ .pixi
126+
127+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
95128__pypackages__ /
96129
97130# Celery stuff
@@ -103,6 +136,7 @@ celerybeat.pid
103136
104137# Environments
105138.env
139+ .envrc
106140.venv
107141env /
108142venv /
@@ -128,27 +162,42 @@ dmypy.json
128162# Pyre type checker
129163.pyre /
130164
131- # IDEs
132- .vscode /
133- .idea /
134- * .swp
135- * .swo
136- * ~
137-
138- # OS generated files
139- .DS_Store
140- .DS_Store ?
141- ._ *
142- .Spotlight-V100
143- .Trashes
144- ehthumbs.db
145- Thumbs.db
146-
147- # Poetry
148- poetry.lock
149-
150- # UV
151- uv.lock
152-
153- # LangGraph API
154- .langgraph_api
165+ # pytype static type analyzer
166+ .pytype /
167+
168+ # Cython debug symbols
169+ cython_debug /
170+
171+ # PyCharm
172+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
173+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
174+ # and can be added to the global gitignore or merged into this file. For a more nuclear
175+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
176+ # .idea/
177+
178+ # Abstra
179+ # Abstra is an AI-powered process automation framework.
180+ # Ignore directories containing user credentials, local state, and settings.
181+ # Learn more at https://abstra.io/docs
182+ .abstra /
183+
184+ # Visual Studio Code
185+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
186+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
187+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
188+ # you could uncomment the following to ignore the entire vscode folder
189+ # .vscode/
190+
191+ # Ruff stuff:
192+ .ruff_cache /
193+
194+ # PyPI configuration file
195+ .pypirc
196+
197+ # Marimo
198+ marimo /_static /
199+ marimo /_lsp /
200+ __marimo__ /
201+
202+ # Streamlit
203+ .streamlit /secrets.toml
0 commit comments