We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30d6fca commit 227dc05Copy full SHA for 227dc05
1 file changed
{{cookiecutter.package_name}}/pyproject.toml
@@ -20,6 +20,18 @@ dev = [
20
"pytest==8.4.1",
21
"pytest-cov==6.0.0",
22
]
23
+{% if cookiecutter.include_docs == 'y' %}
24
+docs = [
25
+ "mkdocs==1.6.1",
26
+ "mkdocs-material==9.6.18",
27
+ "mkdocstrings[python]==0.30.0",
28
+]
29
+{% endif %}
30
+{% if cookiecutter.include_pypi == 'y' %}
31
+build = [
32
+ "build==1.3.0",
33
34
35
36
{% if cookiecutter.include_cli == 'y' %}
37
[project.scripts]
0 commit comments