Skip to content

Commit 3b47658

Browse files
committed
add gitignore
1 parent 39d231d commit 3b47658

1 file changed

Lines changed: 208 additions & 0 deletions

File tree

.gitignore

Lines changed: 208 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,208 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/macos,python
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,python
3+
4+
### macOS ###
5+
# General
6+
.DS_Store
7+
.AppleDouble
8+
.LSOverride
9+
10+
# Icon must end with two \r
11+
Icon
12+
13+
# Thumbnails
14+
._*
15+
16+
# Files that might appear in the root of a volume
17+
.DocumentRevisions-V100
18+
.fseventsd
19+
.Spotlight-V100
20+
.TemporaryItems
21+
.Trashes
22+
.VolumeIcon.icns
23+
.com.apple.timemachine.donotpresent
24+
25+
# Directories potentially created on remote AFP share
26+
.AppleDB
27+
.AppleDesktop
28+
Network Trash Folder
29+
Temporary Items
30+
.apdisk
31+
32+
### macOS Patch ###
33+
# iCloud generated files
34+
*.icloud
35+
36+
### Python ###
37+
# Byte-compiled / optimized / DLL files
38+
__pycache__/
39+
*.py[cod]
40+
*$py.class
41+
42+
# C extensions
43+
*.so
44+
45+
# Distribution / packaging
46+
.Python
47+
build/
48+
develop-eggs/
49+
dist/
50+
downloads/
51+
eggs/
52+
.eggs/
53+
lib/
54+
lib64/
55+
parts/
56+
sdist/
57+
var/
58+
wheels/
59+
share/python-wheels/
60+
*.egg-info/
61+
.installed.cfg
62+
*.egg
63+
MANIFEST
64+
65+
# PyInstaller
66+
# Usually these files are written by a python script from a template
67+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
68+
*.manifest
69+
*.spec
70+
71+
# Installer logs
72+
pip-log.txt
73+
pip-delete-this-directory.txt
74+
75+
# Unit test / coverage reports
76+
htmlcov/
77+
.tox/
78+
.nox/
79+
.coverage
80+
.coverage.*
81+
.cache
82+
nosetests.xml
83+
coverage.xml
84+
*.cover
85+
*.py,cover
86+
.hypothesis/
87+
.pytest_cache/
88+
cover/
89+
90+
# Translations
91+
*.mo
92+
*.pot
93+
94+
# Django stuff:
95+
*.log
96+
local_settings.py
97+
db.sqlite3
98+
db.sqlite3-journal
99+
100+
# Flask stuff:
101+
instance/
102+
.webassets-cache
103+
104+
# Scrapy stuff:
105+
.scrapy
106+
107+
# Sphinx documentation
108+
docs/_build/
109+
110+
# PyBuilder
111+
.pybuilder/
112+
target/
113+
114+
# Jupyter Notebook
115+
.ipynb_checkpoints
116+
117+
# IPython
118+
profile_default/
119+
ipython_config.py
120+
121+
# pyenv
122+
# For a library or package, you might want to ignore these files since the code is
123+
# intended to run in multiple environments; otherwise, check them in:
124+
# .python-version
125+
126+
# pipenv
127+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
128+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
129+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
130+
# install all needed dependencies.
131+
#Pipfile.lock
132+
133+
# poetry
134+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
135+
# This is especially recommended for binary packages to ensure reproducibility, and is more
136+
# commonly ignored for libraries.
137+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
138+
#poetry.lock
139+
140+
# pdm
141+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
142+
#pdm.lock
143+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
144+
# in version control.
145+
# https://pdm.fming.dev/#use-with-ide
146+
.pdm.toml
147+
148+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
149+
__pypackages__/
150+
151+
# Celery stuff
152+
celerybeat-schedule
153+
celerybeat.pid
154+
155+
# SageMath parsed files
156+
*.sage.py
157+
158+
# Environments
159+
.env
160+
.venv
161+
env/
162+
venv/
163+
ENV/
164+
env.bak/
165+
venv.bak/
166+
167+
# Spyder project settings
168+
.spyderproject
169+
.spyproject
170+
171+
# Rope project settings
172+
.ropeproject
173+
174+
# mkdocs documentation
175+
/site
176+
177+
# mypy
178+
.mypy_cache/
179+
.dmypy.json
180+
dmypy.json
181+
182+
# Pyre type checker
183+
.pyre/
184+
185+
# pytype static type analyzer
186+
.pytype/
187+
188+
# Cython debug symbols
189+
cython_debug/
190+
191+
# PyCharm
192+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
193+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
194+
# and can be added to the global gitignore or merged into this file. For a more nuclear
195+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
196+
#.idea/
197+
198+
### Python Patch ###
199+
# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
200+
poetry.toml
201+
202+
# ruff
203+
.ruff_cache/
204+
205+
# LSP config files
206+
pyrightconfig.json
207+
208+
# End of https://www.toptal.com/developers/gitignore/api/macos,python

0 commit comments

Comments
 (0)