Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 536 Bytes

CONTRIBUTING.md

File metadata and controls

22 lines (16 loc) · 536 Bytes

Development - Contributing

Issues and pull requests are more than welcome: https://github.com/developmentseed/eoAPI/issues

dev install

$ git clone https://github.com/developmentseed/eoAPI.git
$ cd eoAPI
$ pip install \
   pre-commit \
   -e src/eoapi/stac["test"] \
   -e src/eoapi/tiler["test"] \

Python3.8 only

This repo is set to use pre-commit to run isort, flake8, pydocstring, black ("uncompromising Python code formatter") and mypy when committing new code.

$ pre-commit install