1- # ## https://raw.github.com/github/gitignore/f57304e9762876ae4c9b02867ed0cb887316387e/python .gitignore
1+ # ## https://raw.github.com/github/gitignore/77b8cdb81610386ec48504c204b10c3acd322ecd/Python .gitignore
22
33# Byte-compiled / optimized / DLL files
44__pycache__ /
5- * .py [cod ]
5+ * .py [codz ]
66* $py.class
77
88# C extensions
99* .so
1010
1111# Distribution / packaging
1212.Python
13- env /
1413build /
1514develop-eggs /
1615dist /
@@ -23,9 +22,11 @@ parts/
2322sdist /
2423var /
2524wheels /
25+ share /python-wheels /
2626* .egg-info /
2727.installed.cfg
2828* .egg
29+ MANIFEST
2930
3031# PyInstaller
3132# Usually these files are written by a python script from a template
@@ -40,13 +41,17 @@ pip-delete-this-directory.txt
4041# Unit test / coverage reports
4142htmlcov /
4243.tox /
44+ .nox /
4345.coverage
4446.coverage. *
4547.cache
4648nosetests.xml
4749coverage.xml
48- * ,cover
50+ * .cover
51+ * .py.cover
4952.hypothesis /
53+ .pytest_cache /
54+ cover /
5055
5156# Translations
5257* .mo
@@ -55,6 +60,8 @@ coverage.xml
5560# Django stuff:
5661* .log
5762local_settings.py
63+ db.sqlite3
64+ db.sqlite3-journal
5865
5966# Flask stuff:
6067instance /
@@ -67,35 +74,130 @@ instance/
6774docs /_build /
6875
6976# PyBuilder
77+ .pybuilder /
7078target /
7179
7280# Jupyter Notebook
7381.ipynb_checkpoints
7482
75- # pyenv
76- .python-version
83+ # IPython
84+ profile_default /
85+ ipython_config.py
7786
78- # celery beat schedule file
87+ # pyenv
88+ # For a library or package, you might want to ignore these files since the code is
89+ # intended to run in multiple environments; otherwise, check them in:
90+ # .python-version
91+
92+ # pipenv
93+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
94+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
95+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
96+ # install all needed dependencies.
97+ # Pipfile.lock
98+
99+ # UV
100+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
101+ # This is especially recommended for binary packages to ensure reproducibility, and is more
102+ # commonly ignored for libraries.
103+ # uv.lock
104+
105+ # poetry
106+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
107+ # This is especially recommended for binary packages to ensure reproducibility, and is more
108+ # commonly ignored for libraries.
109+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
110+ # poetry.lock
111+ # poetry.toml
112+
113+ # pdm
114+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
115+ # pdm.lock
116+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
117+ # in version control.
118+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
119+ .pdm.toml
120+ .pdm-python
121+ .pdm-build /
122+
123+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
124+ __pypackages__ /
125+
126+ # Celery stuff
79127celerybeat-schedule
128+ celerybeat.pid
80129
81130# SageMath parsed files
82131* .sage.py
83132
84- # dotenv
133+ # Environments
85134.env
86-
87- # virtualenv
135+ .envrc
88136.venv
137+ env /
89138venv /
90139ENV /
140+ env.bak /
141+ venv.bak /
91142
92143# Spyder project settings
93144.spyderproject
145+ .spyproject
94146
95147# Rope project settings
96148.ropeproject
97149
98150# mkdocs documentation
99151/site
100152
101-
153+ # mypy
154+ .mypy_cache /
155+ .dmypy.json
156+ dmypy.json
157+
158+ # Pyre type checker
159+ .pyre /
160+
161+ # pytype static type analyzer
162+ .pytype /
163+
164+ # Cython debug symbols
165+ cython_debug /
166+
167+ # PyCharm
168+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
169+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
170+ # and can be added to the global gitignore or merged into this file. For a more nuclear
171+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
172+ # .idea/
173+
174+ # Abstra
175+ # Abstra is an AI-powered process automation framework.
176+ # Ignore directories containing user credentials, local state, and settings.
177+ # Learn more at https://abstra.io/docs
178+ .abstra /
179+
180+ # Visual Studio Code
181+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
182+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
183+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
184+ # you could uncomment the following to ignore the entire vscode folder
185+ # .vscode/
186+
187+ # Ruff stuff:
188+ .ruff_cache /
189+
190+ # PyPI configuration file
191+ .pypirc
192+
193+ # Cursor
194+ # Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
195+ # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
196+ # refer to https://docs.cursor.com/context/ignore-files
197+ .cursorignore
198+ .cursorindexingignore
199+
200+ # Marimo
201+ marimo /_static /
202+ marimo /_lsp /
203+ __marimo__ /
0 commit comments