Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
python-poetry
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
python-poetry
Commits
79986e05
Unverified
Commit
79986e05
authored
Feb 28, 2018
by
Sébastien Eustace
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update README
parent
4b628910
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
1 deletions
+24
-1
README.md
+24
-1
No files found.
README.md
View file @
79986e05
...
@@ -233,12 +233,35 @@ poetry update requests toml
...
@@ -233,12 +233,35 @@ poetry update requests toml
### add
### add
The
`add`
command adds new packages to the
`poetry.toml`
file from the current directory.
The
`add`
command adds required packages to your
`poetry.toml`
and installs them.
If you do not specify a version constraint,
poetry will choose a suitable one based on the available package versions.
```
bash
```
bash
poetry add requests pendulum
poetry add requests pendulum
```
```
#### Options
*
`--D|dev`
: Add package as development dependency.
*
`--optional`
: Add as an optional dependency.
### remove
The
`remove`
command removes a package from the current
list of installed packages
```
bash
poetry remove pendulum
```
#### Options
*
`--D|dev`
: Removes a package from the development dependencies.
*
`--dry-run`
: Outputs the operations but will not execute anything (implicitly enables --verbose).
### package
### package
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment