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
3e9e028c
Unverified
Commit
3e9e028c
authored
Feb 28, 2018
by
Sébastien Eustace
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update README
parent
d3919fb3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
README.md
+8
-3
No files found.
README.md
View file @
3e9e028c
...
...
@@ -12,6 +12,9 @@ Also, be aware that the features described here are the goal that this library i
for and, as of now, not all of them are implemented. The dependency management is pretty much
done while the packaging and publishin are not done yet.
And finally, Poetry's code is only compatible with Python 3.6+ but it can manage
Python project's with previous versions without any problem.
## Installation
```
bash
...
...
@@ -127,7 +130,8 @@ to bring an exhaustive depency resolver to the Python community.
### What about Pipenv?
In short: I do not like the CLI it provides and I think we can do a better and more intuitive one.
In short: I do not like the CLI it provides, or some of the decisions made,
and I think we can do a better and more intuitive one.
Also it only solves partially one problem: dependency management while I wanted something more global
and accurate to manage Python projects with just one tool.
...
...
@@ -185,14 +189,15 @@ This ensures that everyone using the library will get the same versions of the d
If there is no
`poetry.lock`
file, Poetry will create one after dependency resolution.
You can specify to the command that yo do not want the development dependencies installed by passing
You can specify to the command that yo
u
do not want the development dependencies installed by passing
the
`--no-dev`
option.
```
bash
poetry install
--no-dev
```
You can also specify the features you want installed by passing the
`--f|--features`
option (See
[
Features
](
#features
)
for more info)
You can also specify the features you want installed
by passing the
`--f|--features`
option (See
[
Features
](
#features
)
for more info)
```
bash
poetry install
--features
"mysql pgsql"
...
...
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