chore(repository): initialize project foundation

This commit is contained in:
2026-08-06 15:20:24 +02:00
commit 62bc8eb00c
6 changed files with 565 additions and 0 deletions
+118
View File
@@ -0,0 +1,118 @@
# ------------------------------------------------------------------------------
# Python
# ------------------------------------------------------------------------------
__pycache__/
*.py[cod]
*$py.class
# Compiled extensions
*.so
*.pyd
*.dll
# ------------------------------------------------------------------------------
# Virtual Environments
# ------------------------------------------------------------------------------
.venv/
venv/
env/
ENV/
# ------------------------------------------------------------------------------
# Distribution / Packaging
# ------------------------------------------------------------------------------
build/
dist/
site/
*.egg-info/
.eggs/
pip-wheel-metadata/
# ------------------------------------------------------------------------------
# Testing
# ------------------------------------------------------------------------------
.pytest_cache/
.coverage
.coverage.*
htmlcov/
# ------------------------------------------------------------------------------
# Type Checking
# ------------------------------------------------------------------------------
.mypy_cache/
# ------------------------------------------------------------------------------
# Ruff
# ------------------------------------------------------------------------------
.ruff_cache/
# ------------------------------------------------------------------------------
# MkDocs
# ------------------------------------------------------------------------------
/site/
# ------------------------------------------------------------------------------
# IDEs
# ------------------------------------------------------------------------------
.vscode/
.idea/
# ------------------------------------------------------------------------------
# Operating System
# ------------------------------------------------------------------------------
.DS_Store
Thumbs.db
desktop.ini
# ------------------------------------------------------------------------------
# Logs
# ------------------------------------------------------------------------------
*.log
# ------------------------------------------------------------------------------
# Environment Variables
# ------------------------------------------------------------------------------
.env
.env.*
!.env.example
# ------------------------------------------------------------------------------
# Temporary Files
# ------------------------------------------------------------------------------
*.tmp
*.temp
*.bak
*.swp
*.swo
*~
# ------------------------------------------------------------------------------
# Jupyter
# ------------------------------------------------------------------------------
.ipynb_checkpoints/
# ------------------------------------------------------------------------------
# Coverage Reports
# ------------------------------------------------------------------------------
coverage.xml
# ------------------------------------------------------------------------------
# PyInstaller
# ------------------------------------------------------------------------------
*.manifest
*.spec