Skip to content

Commit 661524b

Browse files
author
Felix Fent
committed
Initial Release
1 parent 63afe0a commit 661524b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+50411
-2
lines changed

.gitignore

Lines changed: 363 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,363 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/python,c++,cuda,jupyternotebooks,visualstudiocode,pycharm
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=python,c++,cuda,jupyternotebooks,visualstudiocode,pycharm
3+
4+
### C++ ###
5+
# Prerequisites
6+
*.d
7+
8+
# Compiled Object files
9+
*.slo
10+
*.lo
11+
*.o
12+
*.obj
13+
14+
# Precompiled Headers
15+
*.gch
16+
*.pch
17+
18+
# Compiled Dynamic libraries
19+
*.so
20+
*.dylib
21+
*.dll
22+
23+
# Fortran module files
24+
*.mod
25+
*.smod
26+
27+
# Compiled Static libraries
28+
*.lai
29+
*.la
30+
*.a
31+
*.lib
32+
33+
# Executables
34+
*.exe
35+
*.out
36+
*.app
37+
38+
### CUDA ###
39+
*.i
40+
*.ii
41+
*.gpu
42+
*.ptx
43+
*.cubin
44+
*.fatbin
45+
46+
### JupyterNotebooks ###
47+
# gitignore template for Jupyter Notebooks
48+
# website: http://jupyter.org/
49+
50+
.ipynb_checkpoints
51+
*/.ipynb_checkpoints/*
52+
53+
# IPython
54+
profile_default/
55+
ipython_config.py
56+
57+
# Remove previous ipynb_checkpoints
58+
# git rm -r .ipynb_checkpoints/
59+
60+
### PyCharm ###
61+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
62+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
63+
64+
# User-specific stuff
65+
.idea/**/workspace.xml
66+
.idea/**/tasks.xml
67+
.idea/**/usage.statistics.xml
68+
.idea/**/dictionaries
69+
.idea/**/shelf
70+
71+
# AWS User-specific
72+
.idea/**/aws.xml
73+
74+
# Generated files
75+
.idea/**/contentModel.xml
76+
77+
# Sensitive or high-churn files
78+
.idea/**/dataSources/
79+
.idea/**/dataSources.ids
80+
.idea/**/dataSources.local.xml
81+
.idea/**/sqlDataSources.xml
82+
.idea/**/dynamic.xml
83+
.idea/**/uiDesigner.xml
84+
.idea/**/dbnavigator.xml
85+
86+
# Gradle
87+
.idea/**/gradle.xml
88+
.idea/**/libraries
89+
90+
# Gradle and Maven with auto-import
91+
# When using Gradle or Maven with auto-import, you should exclude module files,
92+
# since they will be recreated, and may cause churn. Uncomment if using
93+
# auto-import.
94+
# .idea/artifacts
95+
# .idea/compiler.xml
96+
# .idea/jarRepositories.xml
97+
# .idea/modules.xml
98+
# .idea/*.iml
99+
# .idea/modules
100+
# *.iml
101+
# *.ipr
102+
103+
# CMake
104+
cmake-build-*/
105+
106+
# Mongo Explorer plugin
107+
.idea/**/mongoSettings.xml
108+
109+
# File-based project format
110+
*.iws
111+
112+
# IntelliJ
113+
out/
114+
115+
# mpeltonen/sbt-idea plugin
116+
.idea_modules/
117+
118+
# JIRA plugin
119+
atlassian-ide-plugin.xml
120+
121+
# Cursive Clojure plugin
122+
.idea/replstate.xml
123+
124+
# SonarLint plugin
125+
.idea/sonarlint/
126+
127+
# Crashlytics plugin (for Android Studio and IntelliJ)
128+
com_crashlytics_export_strings.xml
129+
crashlytics.properties
130+
crashlytics-build.properties
131+
fabric.properties
132+
133+
# Editor-based Rest Client
134+
.idea/httpRequests
135+
136+
# Android studio 3.1+ serialized cache file
137+
.idea/caches/build_file_checksums.ser
138+
139+
### PyCharm Patch ###
140+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
141+
142+
# *.iml
143+
# modules.xml
144+
# .idea/misc.xml
145+
# *.ipr
146+
147+
# Sonarlint plugin
148+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
149+
.idea/**/sonarlint/
150+
151+
# SonarQube Plugin
152+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
153+
.idea/**/sonarIssues.xml
154+
155+
# Markdown Navigator plugin
156+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
157+
.idea/**/markdown-navigator.xml
158+
.idea/**/markdown-navigator-enh.xml
159+
.idea/**/markdown-navigator/
160+
161+
# Cache file creation bug
162+
# See https://youtrack.jetbrains.com/issue/JBR-2257
163+
.idea/$CACHE_FILE$
164+
165+
# CodeStream plugin
166+
# https://plugins.jetbrains.com/plugin/12206-codestream
167+
.idea/codestream.xml
168+
169+
# Azure Toolkit for IntelliJ plugin
170+
# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
171+
.idea/**/azureSettings.xml
172+
173+
### Python ###
174+
# Byte-compiled / optimized / DLL files
175+
__pycache__/
176+
*.py[cod]
177+
*$py.class
178+
179+
# C extensions
180+
181+
# Distribution / packaging
182+
.Python
183+
build/
184+
develop-eggs/
185+
dist/
186+
downloads/
187+
eggs/
188+
.eggs/
189+
lib/
190+
lib64/
191+
parts/
192+
sdist/
193+
var/
194+
wheels/
195+
share/python-wheels/
196+
*.egg-info/
197+
.installed.cfg
198+
*.egg
199+
MANIFEST
200+
201+
# PyInstaller
202+
# Usually these files are written by a python script from a template
203+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
204+
*.manifest
205+
*.spec
206+
207+
# Installer logs
208+
pip-log.txt
209+
pip-delete-this-directory.txt
210+
211+
# Unit test / coverage reports
212+
htmlcov/
213+
.tox/
214+
.nox/
215+
.coverage
216+
.coverage.*
217+
.cache
218+
nosetests.xml
219+
coverage.xml
220+
*.cover
221+
*.py,cover
222+
.hypothesis/
223+
.pytest_cache/
224+
cover/
225+
226+
# Translations
227+
*.mo
228+
*.pot
229+
230+
# Django stuff:
231+
*.log
232+
local_settings.py
233+
db.sqlite3
234+
db.sqlite3-journal
235+
236+
# Flask stuff:
237+
instance/
238+
.webassets-cache
239+
240+
# Scrapy stuff:
241+
.scrapy
242+
243+
# Sphinx documentation
244+
docs/_build/
245+
246+
# PyBuilder
247+
.pybuilder/
248+
target/
249+
250+
# Jupyter Notebook
251+
252+
# IPython
253+
254+
# pyenv
255+
# For a library or package, you might want to ignore these files since the code is
256+
# intended to run in multiple environments; otherwise, check them in:
257+
# .python-version
258+
259+
# pipenv
260+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
261+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
262+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
263+
# install all needed dependencies.
264+
#Pipfile.lock
265+
266+
# poetry
267+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
268+
# This is especially recommended for binary packages to ensure reproducibility, and is more
269+
# commonly ignored for libraries.
270+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
271+
#poetry.lock
272+
273+
# pdm
274+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
275+
#pdm.lock
276+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
277+
# in version control.
278+
# https://pdm.fming.dev/#use-with-ide
279+
.pdm.toml
280+
281+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
282+
__pypackages__/
283+
284+
# Celery stuff
285+
celerybeat-schedule
286+
celerybeat.pid
287+
288+
# SageMath parsed files
289+
*.sage.py
290+
291+
# Environments
292+
.env
293+
.venv
294+
env/
295+
venv/
296+
ENV/
297+
env.bak/
298+
venv.bak/
299+
300+
# Spyder project settings
301+
.spyderproject
302+
.spyproject
303+
304+
# Rope project settings
305+
.ropeproject
306+
307+
# mkdocs documentation
308+
/site
309+
310+
# mypy
311+
.mypy_cache/
312+
.dmypy.json
313+
dmypy.json
314+
315+
# Pyre type checker
316+
.pyre/
317+
318+
# pytype static type analyzer
319+
.pytype/
320+
321+
# Cython debug symbols
322+
cython_debug/
323+
324+
# PyCharm
325+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
326+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
327+
# and can be added to the global gitignore or merged into this file. For a more nuclear
328+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
329+
#.idea/
330+
331+
### Python Patch ###
332+
# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
333+
poetry.toml
334+
335+
# ruff
336+
.ruff_cache/
337+
338+
# LSP config files
339+
pyrightconfig.json
340+
341+
### VisualStudioCode ###
342+
.vscode/
343+
!.vscode/settings.json
344+
!.vscode/tasks.json
345+
!.vscode/launch.json
346+
!.vscode/extensions.json
347+
!.vscode/*.code-snippets
348+
349+
# Local History for Visual Studio Code
350+
.history/
351+
352+
# Built Visual Studio Code Extensions
353+
*.vsix
354+
355+
### VisualStudioCode Patch ###
356+
# Ignore all local history of files
357+
.history
358+
.ionide
359+
360+
### Logging directory ###
361+
log/
362+
363+
# End of https://www.toptal.com/developers/gitignore/api/python,c++,cuda,jupyternotebooks,visualstudiocode,pycharm

0 commit comments

Comments
 (0)