Commit 4891cd25 by Sébastien Eustace

Update README

parent 5ea2d8dc
...@@ -248,12 +248,12 @@ the `--no-dev` option. ...@@ -248,12 +248,12 @@ the `--no-dev` option.
poetry install --no-dev poetry install --no-dev
``` ```
You can also specify the features you want installed You can also specify the extra features you want installed
by passing the `--f|--features` option (See [Features](#features) for more info) by passing the `--E|--extras` option (See [Extras](#extras) for more info)
```bash ```bash
poetry install --features "mysql pgsql" poetry install --extras "mysql pgsql"
poetry install -f mysql -f pgsql poetry install -E mysql -E pgsql
``` ```
#### Options #### Options
...@@ -630,7 +630,7 @@ Poetry supports extras to allow expression of: ...@@ -630,7 +630,7 @@ Poetry supports extras to allow expression of:
[tool.poetry] [tool.poetry]
name = "awesome" name = "awesome"
[dependencies] [tool.poetry.dependencies]
# These packages are mandatory and form the core of this package’s distribution. # These packages are mandatory and form the core of this package’s distribution.
mandatory = "^1.0" mandatory = "^1.0"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment