Skip to content

Commit

Permalink
fix pyproject.toml template
Browse files Browse the repository at this point in the history
  • Loading branch information
droserasprout committed Jan 14, 2025
1 parent 27d99c5 commit afcc14d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dipdup/projects/base/pyproject.toml.j2
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{ header }}
{%- if project.package_manager in ('pdm', 'uv', 'none') %}
{%- if project.package_manager != 'poetry' %}
[project]
name = "{{ project.package }}"
version = "{{ project.version }}"
Expand All @@ -20,7 +20,7 @@ dev = [
"ruff",
"mypy",
]
{% elif project.package_manager == 'poetry' %}
{% else %}
[tool.poetry]
name = "{{ project.package }}"
version = "{{ project.version }}"
Expand Down

0 comments on commit afcc14d

Please sign in to comment.