-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
layouts: add readme to pyproject.toml on creation
Relates-to: #280 Co-authored-by: Arun Babu Neelicattu <[email protected]>
- Loading branch information
1 parent
f27e192
commit 87fc8d5
Showing
2 changed files
with
26 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,7 @@ def test_basic_interactive(app, mocker, poetry): | |
description = "This is a description" | ||
authors = ["Your Name <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
packages = [{include = "my_package"}] | ||
[tool.poetry.dependencies] | ||
|
@@ -87,6 +88,7 @@ def test_interactive_with_dependencies(app, repo, mocker, poetry): | |
description = "This is a description" | ||
authors = ["Your Name <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
packages = [{include = "my_package"}] | ||
[tool.poetry.dependencies] | ||
|
@@ -128,6 +130,7 @@ def test_empty_license(app, mocker, poetry): | |
version = "1.2.3" | ||
description = "" | ||
authors = ["Your Name <[email protected]>"] | ||
readme = "README.md" | ||
packages = [{{include = "my_package"}}] | ||
[tool.poetry.dependencies] | ||
|
@@ -180,6 +183,7 @@ def test_interactive_with_git_dependencies( | |
description = "This is a description" | ||
authors = ["Your Name <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
packages = [{include = "my_package"}] | ||
[tool.poetry.dependencies] | ||
|
@@ -233,6 +237,7 @@ def test_interactive_with_git_dependencies_with_reference( | |
description = "This is a description" | ||
authors = ["Your Name <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
packages = [{include = "my_package"}] | ||
[tool.poetry.dependencies] | ||
|
@@ -286,6 +291,7 @@ def test_interactive_with_git_dependencies_and_other_name( | |
description = "This is a description" | ||
authors = ["Your Name <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
packages = [{include = "my_package"}] | ||
[tool.poetry.dependencies] | ||
|
@@ -339,6 +345,7 @@ def test_interactive_with_directory_dependency( | |
description = "This is a description" | ||
authors = ["Your Name <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
packages = [{include = "my_package"}] | ||
[tool.poetry.dependencies] | ||
|
@@ -392,6 +399,7 @@ def test_interactive_with_directory_dependency_and_other_name( | |
description = "This is a description" | ||
authors = ["Your Name <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
packages = [{include = "my_package"}] | ||
[tool.poetry.dependencies] | ||
|
@@ -443,6 +451,7 @@ def test_interactive_with_file_dependency(app, repo, mocker, poetry): | |
description = "This is a description" | ||
authors = ["Your Name <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
packages = [{include = "my_package"}] | ||
[tool.poetry.dependencies] | ||
|
@@ -484,6 +493,7 @@ def test_python_option(app, mocker, poetry): | |
description = "This is a description" | ||
authors = ["Your Name <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
packages = [{include = "my_package"}] | ||
[tool.poetry.dependencies] | ||
|