64 lines
508 B
Plaintext
64 lines
508 B
Plaintext
# Python
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
__pycache__/
|
|
*.pdb
|
|
*.cover
|
|
*.log
|
|
|
|
# Poetry
|
|
.poetry/
|
|
*.toml.lock
|
|
|
|
# Virtual Environment
|
|
venv/
|
|
env/
|
|
.env/
|
|
.venv/
|
|
|
|
# PyInstaller
|
|
/dist/
|
|
/build/
|
|
/*.spec
|
|
|
|
# Coverage
|
|
.coverage
|
|
.coverage.*
|
|
|
|
# IDEs and editors
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
*.bak
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# Windows
|
|
Thumbs.db
|
|
|
|
# Jupyter Notebooks
|
|
.ipynb_checkpoints/
|
|
|
|
# Miscellaneous
|
|
*.tgz
|
|
*.tar.gz
|
|
*.egg-info/
|
|
*.egg
|
|
|
|
# Poetry build artifacts
|
|
*.whl
|
|
*.tar.gz
|
|
|
|
# pyenv
|
|
.python-version
|
|
|
|
# Docker
|
|
.docker/
|
|
|
|
# Temporary files
|
|
*.log
|