1-
2- # Created by https://www.gitignore.io/api/macos,python
3- # Edit at https://www.gitignore.io/?templates=macos,python
4-
5- # ## macOS ###
6- # General
7- .DS_Store
8- .AppleDouble
9- .LSOverride
10-
11- # Icon must end with two \r
12- Icon
13-
14- # Thumbnails
15- ._ *
16-
17- # Files that might appear in the root of a volume
18- .DocumentRevisions-V100
19- .fseventsd
20- .Spotlight-V100
21- .TemporaryItems
22- .Trashes
23- .VolumeIcon.icns
24- .com.apple.timemachine.donotpresent
25-
26- # Directories potentially created on remote AFP share
27- .AppleDB
28- .AppleDesktop
29- Network Trash Folder
30- Temporary Items
31- .apdisk
32-
33- # ## Python ###
341# Byte-compiled / optimized / DLL files
352__pycache__ /
363* .py [cod ]
5320sdist /
5421var /
5522wheels /
56- pip-wheel-metadata /
5723share /python-wheels /
5824* .egg-info /
5925.installed.cfg
@@ -80,8 +46,10 @@ htmlcov/
8046nosetests.xml
8147coverage.xml
8248* .cover
49+ * .py,cover
8350.hypothesis /
8451.pytest_cache /
52+ cover /
8553
8654# Translations
8755* .mo
@@ -104,6 +72,7 @@ instance/
10472docs /_build /
10573
10674# PyBuilder
75+ .pybuilder /
10776target /
10877
10978# Jupyter Notebook
@@ -114,7 +83,9 @@ profile_default/
11483ipython_config.py
11584
11685# pyenv
117- .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
11889
11990# pipenv
12091# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
@@ -123,8 +94,27 @@ ipython_config.py
12394# install all needed dependencies.
12495# Pipfile.lock
12596
126- # celery beat schedule file
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
113+ __pypackages__ /
114+
115+ # Celery stuff
127116celerybeat-schedule
117+ celerybeat.pid
128118
129119# SageMath parsed files
130120* .sage.py
@@ -156,6 +146,57 @@ dmypy.json
156146# Pyre type checker
157147.pyre /
158148
159- # End of https://www.gitignore.io/api/macos,python
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/
161+
162+ # General
163+ .DS_Store
164+ .AppleDouble
165+ .LSOverride
166+
167+ # Icon must end with two \r
168+ Icon
169+
170+
171+ # Thumbnails
172+ ._ *
173+
174+ # Files that might appear in the root of a volume
175+ .DocumentRevisions-V100
176+ .fseventsd
177+ .Spotlight-V100
178+ .TemporaryItems
179+ .Trashes
180+ .VolumeIcon.icns
181+ .com.apple.timemachine.donotpresent
182+
183+ # Directories potentially created on remote AFP share
184+ .AppleDB
185+ .AppleDesktop
186+ Network Trash Folder
187+ Temporary Items
188+ .apdisk
189+
190+ * ~
191+
192+ # temporary files which can be created if a process still has a handle open of a deleted file
193+ .fuse_hidden *
194+
195+ # KDE directory preferences
196+ .directory
197+
198+ # Linux trash folder which might appear on any partition or disk
199+ .Trash- *
160200
161- .vscode
201+ # .nfs files are created when an open file is removed but is still being accessed
202+ .nfs *
0 commit comments