# Default .gitignore created by pkgmngr
# Includes common patterns for Python projects

# pkgmngr config file
pkgmngr.toml
.claude

# pkgmngr snapshots
snapshots/
deploy.py

# Example of pkgmngr-specific exclusions
# Git will ignore lines with a leading #pkgmngr comment, but snapshot will use them
#pkgmngr my_secret_config.ini
#pkgmngr temporary_work/

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
.pytest_cache/
.benchmarks/
.coverage
htmlcov/

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

# IDEs and editors
.idea/
.vscode/
*.swp
*.swo
.DS_Store
Thumbs.db

# Build and distribution
dist/
build/

# Version control
.git/
.hg/
.svn/
.bzr/

# Frontend specific
node_modules/
bower_components/
package-lock.json
yarn.lock
npm-debug.log
yarn-error.log

# Data and logs
logs/
*.log
*.csv
*.sqlite
*.db