Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion tests/data/test_package_generation/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ dynamic = [
]
keywords = [
]
license-files = [
"LICENSE.md",
]
Comment thread
paddyroddy marked this conversation as resolved.
name = "cookiecutter-test"
optional-dependencies = {dev = [
"build",
Expand All @@ -46,7 +49,6 @@ optional-dependencies = {dev = [
]}
readme = "README.md"
requires-python = ">=3.11"
license.file = "LICENSE.md"
urls.homepage = "https://github.com/test-user/cookiecutter-test"

[tool.coverage]
Expand Down
4 changes: 3 additions & 1 deletion {{cookiecutter.project_slug}}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ dynamic = [
]
keywords = [
]
license-files = [
"LICENSE.md",
]
Comment thread
matt-graham marked this conversation as resolved.
name = "{{cookiecutter.project_slug}}"
optional-dependencies = {dev = [
"build",
Expand All @@ -49,7 +52,6 @@ optional-dependencies = {dev = [
]}
readme = "README.md"
requires-python = ">={{cookiecutter.min_python_version}}"
license.file = "LICENSE.md"
urls.homepage = "{{cookiecutter.__repo_url}}"

[tool.coverage]
Expand Down