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
571e5634
Commit
571e5634
authored
May 16, 2019
by
John Freeman
Committed by
Sébastien Eustace
May 16, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use consistent package naming in example (#1082)
parent
bb984807
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
docs/docs/pyproject.md
+3
-3
No files found.
docs/docs/pyproject.md
View file @
571e5634
...
@@ -98,7 +98,7 @@ you can specify the packages you want to include in the final distribution.
...
@@ -98,7 +98,7 @@ you can specify the packages you want to include in the final distribution.
[tool.poetry]
[tool.poetry]
# ...
# ...
packages
=
[
packages
=
[
{
include
=
"mypackage"
}
,
{
include
=
"my
_
package"
}
,
{
include
=
"extra_package/**/*.py"
}
,
{
include
=
"extra_package/**/*.py"
}
,
]
]
```
```
...
@@ -109,7 +109,7 @@ If your package is stored inside a "source" directory, you must specify it:
...
@@ -109,7 +109,7 @@ If your package is stored inside a "source" directory, you must specify it:
[tool.poetry]
[tool.poetry]
# ...
# ...
packages
=
[
packages
=
[
{
include
=
"mypackage"
,
from
=
"lib"
}
,
{
include
=
"my
_
package"
,
from
=
"lib"
}
,
]
]
```
```
...
@@ -123,7 +123,7 @@ packages = [
...
@@ -123,7 +123,7 @@ packages = [
```toml
```toml
packages = [
packages = [
{ include = "mypackage" },
{ include = "my
_
package" },
{ include = "extra_package" },
{ include = "extra_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