Skip to content

Commit

Permalink
Update pyproject.toml.jinja
Browse files Browse the repository at this point in the history
  • Loading branch information
twsl authored Jan 7, 2025
1 parent 7310f84 commit a449905
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions project/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ description = "{{ project_description }}"
readme = "README.md"{% if copyright_license != 'none' %}
license = { text = "{{ copyright_license }}" }{% endif %}
authors = [
{ name = "{{ author_username }}", email = "{{ author_email }}" }
{ name = "{{ author_username }}", email = "{{ author_email }}" }
]
keywords = [
"{{ python_package_distribution_name }}"
"{{ python_package_distribution_name }}"
]
dynamic = [
"classifiers",
"dependencies"
"classifiers",
"dependencies"
]

[project.urls]
Expand All @@ -26,7 +26,9 @@ repository = "https://{{ repository_provider }}/{{ repository_namespace }}/{{ re
documentation = {% if repository_provider == "github.com"%}"https://{{ repository_namespace }}.github.io/{{ repository_name }}/"{% else %}"https://pages.{{ repository_provider }}/{{ repository_namespace }}/{{ repository_name }}"{% endif %}

[tool.poetry]
packages = [ { include = "{{ python_package_import_name }}", from = "src" } ]
packages = [
{ include = "{{ python_package_import_name }}", from = "src" }
]
classifiers = [
]

Expand Down

0 comments on commit a449905

Please sign in to comment.