Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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: 4 additions & 0 deletions copier.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ project_description:
default: Project brief description.
help: "Provide a concise description to be used in the Python package overview and the introductory paragraph in the README and documentation's index page:"
type: str
project_keywords:
default: "{{ project_name|lower }}"
type: str
help: "Provide a list of comma-separated keywords to be using in the Python package overview:"
development_status:
default: Alpha
choices:
Expand Down
10 changes: 5 additions & 5 deletions includes/copier-answers-sample.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ copyright_holder: Serious Scaffold
copyright_license: MIT License
copyright_year: 2022-2024
coverage_threshold: 100
default_py: '3.12'
default_py: "3.12"
development_status: Alpha
max_py: '3.13'
min_py: '3.9'
max_py: "3.13"
min_py: "3.9"
module_name: ss_python
organization_name: Serious Scaffold
package_name: ss-python
platforms:
- macos
- linux
- windows
project_description:
A Python Project Template for Long-Term Maintainability.
project_description: A Python Project Template for Long-Term Maintainability.
project_keywords: copier-template, project-template, long-term-maintainability
project_name: Serious Scaffold Python
repo_name: ss-python
repo_namespace: serious-scaffold
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description = "A Python Project Template for Long-Term Maintainability."
readme = "README.md"
keywords = [
"copier-template",
"full-development-lifecycle",
"long-term-maintainability",
"project-template",
"serious-scaffold",
]
Expand Down
8 changes: 4 additions & 4 deletions template/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ name = "{{ package_name }}"
description = "{{ project_description }}"
readme = "README.md"
keywords = [
"copier-template",
"full-development-lifecycle",
"project-template",
"serious-scaffold",
{% set keywords = (project_keywords.split(",") | map("trim") | list) + ["serious-scaffold"] %}
{% for keyword in keywords | sort %}
"{{ keyword }}",
{% endfor %}
]
{% if copyright_license == "Apache Software License" %}
license = { text = "Apache-2.0" }
Expand Down