This commit is contained in:
2025-11-27 16:02:44 +01:00
parent c3c0679c49
commit 9a01115b5a
23 changed files with 617 additions and 9 deletions

79
.gitignore vendored
View File

@@ -1,3 +1,75 @@
# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.so
*.egg-info/
*.log
*.pot
*.mo
*.pickle
*.pyc
.Python
.env
.venv
venv/
env/
ENV/
build/
develop-eggs/
dist/
downloads/
eggs/
pip-wheel-metadata/
wheels/
*.manifest
*.spec
# Virtual Environment
venv/
env/
.venv/
ENV/
# IDE / Editors
.vscode/
.idea/
*.sublime-project
*.sublime-workspace
*.swp
*.tmp
# Testing
htmlcov/
.coverage
.tox/
.nox/
.pytest_cache/
coverage.xml
test_results/
junitxml.xml
# Caches
.cache/
sass-cache/
*.cache
# OS-specific files
.DS_Store
Thumbs.db
# PyCharm specific
*.iml
.vscode/
.idea/
# ---> Python
# Byte-compiled / optimized / DLL files
__pycache__/
@@ -161,13 +233,6 @@ dmypy.json
# Cython debug symbols
cython_debug/
# PyCharm
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
# Ruff stuff:
.ruff_cache/