/target_selection

Code to perform target selection for BHM/MWM using catalogdb

Primary LanguagePythonBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

target_selection

Versions Documentation Status

Code to perform target selection for BHM/MWM using catalogdb.

Installation

To install target_selection do

$ pip install numpy
$ pip install sdss-target-selection

Due to a misconfiguration in pymange, numpy needs to be installed before you can install target_selection.

Development

New code must follow the SDSS Coding Standards. Linting checks run as a GitHub workflow after each commit. The workflow also check that the package and dependencies can be installed. Pull Requests that don't pass the checks cannot be merged.

To test the code offline, you must install flake8 and isort and run the following commands from the root of the package

$ flake8 . --count --show-source --statistics
$ isort -c python/ bin/

If the command exit without error, everything should be fine.