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
9e1324e1
Unverified
Commit
9e1324e1
authored
Mar 30, 2020
by
finswimmer
Committed by
GitHub
Mar 30, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: Add information about valid export formats to help page (#1653)
Co-authored-by: finswimmer77@gmail.com <GiWahnsinn07!>
parent
1bcee920
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
+6
-1
poetry/console/commands/export.py
+6
-1
No files found.
poetry/console/commands/export.py
View file @
9e1324e1
...
@@ -11,7 +11,12 @@ class ExportCommand(Command):
...
@@ -11,7 +11,12 @@ class ExportCommand(Command):
description
=
"Exports the lock file to alternative formats."
description
=
"Exports the lock file to alternative formats."
options
=
[
options
=
[
option
(
"format"
,
"f"
,
"Format to export to."
,
flag
=
False
),
option
(
"format"
,
"f"
,
"Format to export to. Currently, only requirements.txt is supported."
,
flag
=
False
,
),
option
(
"output"
,
"o"
,
"The name of the output file."
,
flag
=
False
),
option
(
"output"
,
"o"
,
"The name of the output file."
,
flag
=
False
),
option
(
"without-hashes"
,
None
,
"Exclude hashes from the exported file."
),
option
(
"without-hashes"
,
None
,
"Exclude hashes from the exported file."
),
option
(
"dev"
,
None
,
"Include development dependencies."
),
option
(
"dev"
,
None
,
"Include development dependencies."
),
...
...
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