First off, thanks for taking the time to contribute!
- Reporting Bugs: Use GitHub Issues.
- Feature Requests: Check existing issues before opening a new one.
- Pull Requests:
- Fork the repo.
- Create a new branch.
- Ensure code passes lints (if applicable).
- Submit the PR!
# Clone the repository
git clone https://github.com/lablnet/HyperFlow.git
cd HyperFlow
# Create a virtual environment
python3 -m venv .venv
source .venv/bin/activate
# Install dependencies
pip install -e ".[dev]"We use ruff for linting and formatting:
ruff check .
ruff format .