I am trying to follow local setup for contributing to flask. Here is the link to contribution guide. Here, i am confused with what the following line does
pip install -e ".[dev]"
it mentioned that it install's flask in editable mode with development dependencies. so, this will show changes made in the code immediately in the local python version.(Please correct me if i am wrong). What i don't understand is ".[dev]"
. What does this mean? does dev has special behaviour here or i can use anything like ".[hello]" .