diff --git a/src/flake8_requirements/checker.py b/src/flake8_requirements/checker.py index 8ee8863..77b83d7 100644 --- a/src/flake8_requirements/checker.py +++ b/src/flake8_requirements/checker.py @@ -20,7 +20,7 @@ from .modules import STDLIB_PY3 # NOTE: Changing this number will alter package version as well. -__version__ = "2.0.1" +__version__ = "2.0.2" __license__ = "MIT" LOG = getLogger('flake8.plugin.requirements') @@ -347,8 +347,9 @@ def add_options(cls, manager): "Specify the name (location) of the requirements text file. " "Unless an absolute path is given, the file will be searched " "relative to the project's root directory. If this option is " - "given, requirements from setup.py, setup.cfg or " - "pyproject.toml will not be taken into account." + "not specified, the plugin look up for requirements in " + "(1) setup.py, (2) setup.cfg, (3) pyproject.toml, and (4) " + "requirements.txt. If specified, look up will not take place." )) manager.add_option( "--requirements-max-depth",