Skip to content

Latest commit

 

History

History
58 lines (37 loc) · 661 Bytes

CONTRIBUTING.md

File metadata and controls

58 lines (37 loc) · 661 Bytes

Contributing Guide

Development

Python Version

Developing in this repository requires Python 3.10 or higher.

Set-up

Clone the repo by running:

git clone [email protected]:coinbase/cdp-sdk-python.git

To install all dependencies, run:

make install-deps

Formatting

To format the code, run:

make format

Linting

To detect all lint errors, run:

make lint

To autocorrect all lint errors, run:

make lint-fix

Testing

To run all tests, run:

make test

Generating Documentation

To build and view the documentation locally, run:

make local-docs