gitignore
This commit is contained in:
parent
50936dea58
commit
4b9359ebe2
1 changed files with 53 additions and 0 deletions
53
.gitignore
vendored
Normal file
53
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,53 @@
|
||||||
|
# --- Python bytecode / cache ---
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*$py.class
|
||||||
|
|
||||||
|
# --- Virtual environments ---
|
||||||
|
.venv/
|
||||||
|
venv/
|
||||||
|
env/
|
||||||
|
ENV/
|
||||||
|
.env/
|
||||||
|
.python-venv/
|
||||||
|
|
||||||
|
# --- Packaging / build artifacts ---
|
||||||
|
build/
|
||||||
|
dist/
|
||||||
|
*.egg-info/
|
||||||
|
.eggs/
|
||||||
|
pip-wheel-metadata/
|
||||||
|
*.egg
|
||||||
|
|
||||||
|
# --- Test / coverage / tooling ---
|
||||||
|
.pytest_cache/
|
||||||
|
.coverage
|
||||||
|
.coverage.*
|
||||||
|
htmlcov/
|
||||||
|
.tox/
|
||||||
|
.nox/
|
||||||
|
.mypy_cache/
|
||||||
|
.ruff_cache/
|
||||||
|
.pyre/
|
||||||
|
.pytype/
|
||||||
|
|
||||||
|
# --- Logs / runtime data ---
|
||||||
|
*.log
|
||||||
|
*.tmp
|
||||||
|
|
||||||
|
# --- IDE / Editor ---
|
||||||
|
# JetBrains / PyCharm
|
||||||
|
.idea/
|
||||||
|
|
||||||
|
# VS Code
|
||||||
|
.vscode/
|
||||||
|
|
||||||
|
# Editors / OS clutter
|
||||||
|
*~
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# --- Misc cache ---
|
||||||
|
.cache/
|
||||||
Loading…
Reference in a new issue