Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 1.24 KB

CONTRIBUTING.md

File metadata and controls

25 lines (18 loc) · 1.24 KB

Contributing Guidelines for spaghetti

Thank you for your interest in contributing! We work primarily on Github. Please review the contributing procedures here and here so that we can accept your contributions! Alternatively, contact someone in the development chat channel.

Style and format

  1. Python 3.6, 3.7, 3.8, and 3.9 are the officially supported versions.
  2. This project follows the formatting conventions of black and utilizes pre-commit to format commits prior to pull requests being made.
  3. Import packages, classes, and functions with their full name where possible.
  • For example:

    import spaghetti
    from shapely.geometry import Point

    import spaghetti as spgh
    from shapely.geometry import Point as pt