Update help text

This commit is contained in:
Harri Berglund 2015-04-28 22:37:06 +03:00
parent 57626670ce
commit b8a88e3c94
2 changed files with 6 additions and 7 deletions

View File

@ -34,11 +34,11 @@ Usage
::
Usage:
pipreqs <path> [options]
pipreqs [options] <path>
Options:
--savepath Supply custom path for requirements.txt
--debug See debug output
--debug Print debug information
--savepath <file> Save the list of requirements in the given file
Example
-------

View File

@ -3,12 +3,11 @@
"""pipreqs - Generate pip requirements.txt file based on imports
Usage:
pipreqs <path>
pipreqs <path>[options]
pipreqs [options] <path>
Options:
--debug prints debug information.
--savepath path to requirements.txt (Optional)
--debug Print debug information
--savepath <file> Save the list of requirements in the given file
"""
from __future__ import print_function
import os