Skip to content

Commit

Permalink
Use more simply internal link to header
Browse files Browse the repository at this point in the history
  • Loading branch information
raimon49 committed Feb 10, 2018
1 parent b5657f7 commit 76e176c
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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.

Expand All @@ -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.

Expand All @@ -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.

Expand All @@ -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.

Expand All @@ -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.

Expand All @@ -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.

Expand All @@ -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.

Expand All @@ -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.

Expand Down

0 comments on commit 76e176c

Please sign in to comment.