Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 904 Bytes

File metadata and controls

32 lines (23 loc) · 904 Bytes

Contributing to MOOZY

We welcome bug reports, documentation improvements, and feature suggestions.

Reporting Issues

Open a GitHub Issue with:

  • A clear description of the problem
  • Steps to reproduce (if applicable)
  • Your environment (Python version, GPU, OS)

Development Setup

git clone https://github.com/AtlasAnalyticsLab/MOOZY.git
cd MOOZY
make bootstrap   # installs dev deps + pre-commit hooks
make check        # runs format check, lint, typecheck, compile

Code Style

  • Formatting: Ruff (line length 120)
  • Type checking: mypy on annotated modules
  • Pre-commit hooks run automatically on git commit

Pull Requests

  1. Fork the repo and create a feature branch.
  2. Run make check before pushing.
  3. Open a PR with a clear description of the change.