Skip to content

Commit 55fc96c

Browse files
fix: templating conflicts
1 parent aa107fb commit 55fc96c

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

cookiecutter.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,12 @@
1414
"command_line_interface": ["Typer", "Argparse", "No command-line interface"],
1515
"create_author_file": "n",
1616
"open_source_license": ["MIT license", "Apache Software License 2.0", "GNU General Public License v3", "GNU Affero General Public License v3", "Mozilla Public License 2.0", "Creative Commons Attribution 4.0", "Creative Commons Zero v1.0 Universal", "Unlicense", "WTFPL", "Not open source"],
17-
"__gh_slug": "{{ cookiecutter.github_username }}/{{ cookiecutter.project_slug }}"
17+
"__gh_slug": "{{ cookiecutter.github_username }}/{{ cookiecutter.project_slug }}",
18+
"_copy_without_render": [
19+
"*.html",
20+
"ansible/*",
21+
".github/*",
22+
"taskfile.yml",
23+
"taskfiles/*.yml"
24+
]
1825
}

{{cookiecutter.project_slug}}/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ markers = [
7979
]
8080

8181
[tool.coverage.run]
82-
source = ["{{ python_package_import_name }}"]
82+
source = ["{{ cookiecutter.python_package_import_name }}"]
8383
omit = [
8484
"*/tests/*",
8585
"*/migrations/*",

0 commit comments

Comments
 (0)