mirror of
https://github.com/pacnpal/simpleguardhome.git
synced 2025-12-28 00:07:06 -05:00
65 lines
618 B
Plaintext
65 lines
618 B
Plaintext
# Version control
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
env/
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
.project
|
|
.pydevproject
|
|
.settings/
|
|
*.sublime-workspace
|
|
*.sublime-project
|
|
|
|
# Test
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
|
|
# Project specific
|
|
rules_backup/
|
|
.env
|
|
|
|
# Keep these files
|
|
!src/
|
|
!src/simpleguardhome/
|
|
!requirements.txt
|
|
!setup.py
|
|
!pyproject.toml
|
|
!MANIFEST.in
|
|
!LICENSE
|
|
!README.md |