Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
207 changes: 0 additions & 207 deletions .gitignore

This file was deleted.

68 changes: 68 additions & 0 deletions Quilt/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# 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

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

# UV
.uv/
# Note: uv.lock should be committed for reproducibility

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# Jupyter
.ipynb_checkpoints/
*.ipynb

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/

# Generated files
*.png
*.jpg
*.jpeg
*.svg
*.pdf
*.txt
!README.txt
# Logs
*.log

# OS
.DS_Store
Thumbs.db

# Project specific
output/
results/
temp/
2 changes: 2 additions & 0 deletions Quilt/.python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
3.12

Loading