From 76e176c1cf85a62e6cb0ec00ed104ef196a5484b Mon Sep 17 00:00:00 2001 From: raimon Date: Sat, 10 Feb 2018 18:22:12 +0900 Subject: [PATCH] Use more simply internal link to header --- README.md | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index a7e5d25..2d01701 100644 --- a/README.md +++ b/README.md @@ -10,14 +10,14 @@ Dump the software license list of Python packages installed with pip. * [Installation](#installation) * [Usage](#usage) * [Command\-Line Options](#command-line-options) - * [Option: \-\-from\-classifier](#option---from-classifier) - * [Option: \-\-with\-system](#option---with-system) - * [Option: \-\-with\-authors](#option---with-authors) - * [Option: \-\-with\-urls](#option---with-urls) - * [Option: \-\-ignore\-packages](#option---ignore-packages) - * [Option: \-\-order](#option---order) - * [Option: \-\-format\-markdown](#option---format-markdown) - * [Option: \-\-format\-rst](#option---format-rst) + * [Option: from\-classifier](#option-from-classifier) + * [Option: with\-system](#option-with-system) + * [Option: with\-authors](#option-with-authors) + * [Option: with\-urls](#option-with-urls) + * [Option: ignore\-packages](#option-ignore-packages) + * [Option: order](#option-order) + * [Option: format\-markdown](#option-format-markdown) + * [Option: format\-rst](#option-format-rst) * [More Information](#more-information) * [License](#license) * [Dependencies](#dependencies) @@ -56,7 +56,7 @@ Execute the command with your venv (or virtualenv) environment. ## Command-Line Options -### Option: --from-classifier +### Option: from-classifier By default, this tool finds the license from package Metadata. However, depending on the type of package, it does not declare a license only in the Classifiers. @@ -75,7 +75,7 @@ If you want to refer to the license declared in Classifiers, use the `--from-cla setuptools 38.5.0 MIT License ``` -### Option: --with-system +### Option: with-system By default, system packages such as `pip` and `setuptools` are ignored. @@ -92,7 +92,7 @@ If you want to output all including system package, use the `--with-system` opti setuptools 38.5.0 UNKNOWN ``` -### Option: --with-authors +### Option: with-authors When executed with the `--with-authors` option, output with author of the package. @@ -103,7 +103,7 @@ When executed with the `--with-authors` option, output with author of the packag pytz 2017.3 MIT Stuart Bishop ``` -### Option: --with-urls +### Option: with-urls For packages without Metadata, the license is output as `UNKNOWN`. To get more package information, use the `--with-urls` option. @@ -114,7 +114,7 @@ For packages without Metadata, the license is output as `UNKNOWN`. To get more p pytz 2017.3 MIT http://pythonhosted.org/pytz ``` -### Option: --ignore-packages +### Option: ignore-packages When executed with the `--ignore-packages` option, ignore the package specified by argument from list output. @@ -134,7 +134,7 @@ Package names of arguments can be separated by spaces. setuptools 38.5.0 UNKNOWN ``` -### Option: --order +### Option: order By default, it is ordered by package name. @@ -144,7 +144,7 @@ If you give arguments to the `--order option`, you can output in other sorted or (venv) $ pip-licenses --order=license ``` -### Option: --format-markdown +### Option: format-markdown When executed with the `--format-markdown` option, you can output list in markdown format. @@ -163,7 +163,7 @@ When inserted in a markdown document, it is rendered as follows: | Django | 2.0.2 | BSD | | pytz | 2017.3 | MIT | -### Option: --format-rst +### Option: format-rst When executed with the `--format-rst` option, you can output list in "[Grid tables](http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html#grid-tables)" of reStructuredText format.