50 lines
432 B
Plaintext
50 lines
432 B
Plaintext
# Python cache
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
.pytest_cache/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
env/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Documentation
|
|
*.md
|
|
!README.md
|
|
|
|
# Test files
|
|
tests/
|
|
test_*.py
|
|
*_test.py
|
|
|
|
# GPX files in assets (exclude user test files)
|
|
hiking_assistant/assets/*.gpx
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# Archives
|
|
*.tar
|
|
*.tar.gz
|
|
*.zip
|
|
|
|
# Logs
|
|
*.log
|