92 lines
1.4 KiB
Plaintext
92 lines
1.4 KiB
Plaintext
# =============================================================================
|
|
# the-agency .gitignore
|
|
# =============================================================================
|
|
|
|
# --- Python -------------------------------------------------------------------
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
*.egg
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
eggs/
|
|
parts/
|
|
var/
|
|
sdist/
|
|
develop-eggs/
|
|
.installed.cfg
|
|
lib/
|
|
lib64/
|
|
MANIFEST
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Distribution / packaging
|
|
pip-wheel-metadata/
|
|
share/python-wheels/
|
|
*.whl
|
|
|
|
# Unit test / coverage
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
pytestdebug.log
|
|
|
|
# MyPy / type checkers
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
.pyre/
|
|
.pytype/
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# IPython
|
|
profile_default/
|
|
ipython_config.py
|
|
|
|
# --- Runs / Blackboard --------------------------------------------------------
|
|
# Keep the runs/ directory (tracked via .gitkeep) but exclude all DB files
|
|
# and any run-specific subdirectories.
|
|
runs/**/blackboard.db
|
|
runs/*/
|
|
|
|
# --- macOS --------------------------------------------------------------------
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
._*
|
|
|
|
# --- Editors ------------------------------------------------------------------
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.project
|
|
.classpath
|
|
|
|
# --- Logs & temp files --------------------------------------------------------
|
|
*.log
|
|
*.tmp
|
|
*.temp
|