Skip to content

Commit

Permalink
fixed config json
Browse files Browse the repository at this point in the history
  • Loading branch information
rnoxy committed Nov 14, 2023
1 parent c56f4e6 commit 2521c01
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions mini-poetry/cookiecutter.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"project_name": "Mini Kedro with Poetry",
"project_description": "A mini kedro project with poetry",
"project_author_name": "{{ cookiecutter.author_name }}",
"repo_name": "{{ cookiecutter.project_name.strip().replace(' ', '-').replace('_', '-').lower() }}",
"python_package": "{{ cookiecutter.project_name.strip().replace(' ', '_').replace('-', '_').lower() }}",
"kedro_version": "{{ cookiecutter.kedro_version }}",
Expand Down
2 changes: 1 addition & 1 deletion mini-poetry/{{ cookiecutter.repo_name }}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ kedro_init_version = "{{ cookiecutter.kedro_version }}"
[tool.poetry]
name = "{{ cookiecutter.project_name }}"
# Here you can change the config for project version
version = "0.0.1" # remember to descritbe the changes in the CHANGELOG.md
version = "0.1.0" # remember to descritbe the changes in the CHANGELOG.md
description = "{{ cookiecutter.project_description }}"
authors = ["{{ cookiecutter.author_name }}"]
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions tests/mini-poetry/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
# During the test we run
# > kedro new --starter mini-poetry --config tests/mini-poetry/config.yml
project_name: "test-project"
project_description: "test-project-description"
project_author_name: "test-project-author"
project_description: "test-project description"
project_author_name: "test-project author"

0 comments on commit 2521c01

Please sign in to comment.