104 lines
1.0 KiB
Plaintext
104 lines
1.0 KiB
Plaintext
# 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
|
|
MANIFEST
|
|
.pytest_cache/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.hypothesis/
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
.pyre/
|
|
.ruff_cache/
|
|
|
|
# Virtual environments
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Git worktrees (we need the main latex-templates repo, but not the worktrees)
|
|
# Note: latex-qsm and latex-vsm are needed for Docker build, so they're not ignored
|
|
|
|
# LaTeX build artifacts
|
|
*.aux
|
|
*.log
|
|
*.out
|
|
*.fdb_latexmk
|
|
*.fls
|
|
*.synctex.gz
|
|
*.bbl
|
|
*.blg
|
|
*.idx
|
|
*.ilg
|
|
*.ind
|
|
*.toc
|
|
*.lot
|
|
*.lof
|
|
*.nav
|
|
*.snm
|
|
*.vrb
|
|
|
|
# Documentation
|
|
*.md
|
|
docs/
|
|
LICENSE
|
|
|
|
# Development
|
|
dev.sh
|
|
*.log
|
|
|
|
# Environment files
|
|
.env
|
|
.env.*
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
*.bak
|
|
*.backup
|
|
|
|
# Test data
|
|
tests/
|
|
test_*.py
|
|
*_test.py
|
|
|
|
# CI/CD
|
|
.github/
|
|
.gitlab-ci.yml
|
|
.travis.yml
|
|
|
|
# Assets folder (we'll generate PDFs in Docker, not copy existing ones)
|
|
assets/
|