Files
manifoldbt/.gitignore
T
Jimmy7892 67ab17280b Initial commit: manifoldbt public repo
Python DSL, examples, docs, benchmarks, and tests.
Rust engine distributed as pre-compiled wheel via PyPI.
2026-03-17 16:15:40 +01:00

33 lines
242 B
Plaintext

# Python
__pycache__/
*.pyc
*.pyo
*.pyd
*.so
*.egg-info/
dist/
build/
.venv/
*.whl
# Compiled Rust artifacts
*.pdb
target/
# Data (not distributed)
data/
output/
# IDE
.vscode/
.idea/
# OS
.DS_Store
Thumbs.db
# Secrets
*.key
.env
.env.*