Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 688 Bytes

File metadata and controls

32 lines (22 loc) · 688 Bytes

Contributing

Thanks for your interest in improving ChartExtractor.

Getting Started

  1. Fork the repository and create a feature branch.

  2. Create and activate a virtual environment.

  3. Install dependencies:

    pip install -r requirements.txt
    pip install pytest
  4. Run tests before opening a pull request:

    pytest -q

Pull Request Guidelines

  • Keep changes focused and small when possible.
  • Add or update tests for behavior changes.
  • Update documentation when user-visible behavior changes.
  • Ensure CI is green.

Code Style

  • Follow existing project conventions and naming.
  • Prefer clear, readable code over clever shortcuts.