47 lines
419 B
Plaintext
47 lines
419 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Python
|
|
__pycache__
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
env/
|
|
.venv/
|
|
ENV/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Tests
|
|
excel_filter/tests/
|
|
pytest.ini
|
|
*.test.py
|
|
|
|
# Documentation
|
|
README.md
|
|
|
|
# Build artifacts
|
|
excel_filter/build/
|
|
excel_filter/*.spec
|
|
excel_filter/*.exe
|
|
excel_filter/*.bat
|
|
|
|
# Development files
|
|
*.log
|
|
.env
|
|
presets.json
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
.cache/ |