Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# ==========================================
# Python - Cache files and compiled code
# ==========================================
__pycache__/
*.py[cod]
*$py.class
*.so
.Python

# ==========================================
# Virtual environments
# ==========================================
venv/
env/
ENV/
.env
.venv

# ==========================================
# Distribution, packaging, and builds
# ==========================================
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# ==========================================
# Testing, coverage, and logs
# ==========================================
.pytest_cache/
.coverage
htmlcov/
.pypy_cache/
*.log

# ==========================================
# System junk (Windows / macOS)
# ==========================================
*.DS_Store
Thumbs.db
desktop.ini
Loading