Skip to content

Commit 469c3cc

Browse files
authored
Merge pull request #32 from python-project-templates/tkp/spac
Fix description spacing
2 parents 6f28b69 + fdccf48 commit 469c3cc

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

cpp/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ build-backend = "setuptools.build_meta"
1313
[project]
1414
name = "cpp"
1515
authors = [{name = "Tim Paine", email = "[email protected]"}]
16-
description="A Python/C++ project template"
16+
description = "A Python/C++ project template"
1717
version = "0.1.0"
1818
readme = "README.md"
1919
license = { file = "LICENSE" }

js/pyproject.toml.jinja

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build-backend="hatchling.build"
88
[project]
99
name = "{{project_name_formatted}}"
1010
authors = [{name = "{{team}}", email = "{{email}}"}]
11-
description="{{project_description}}"
11+
description = "{{project_description}}"
1212
readme = "README.md"
1313
license = { text = "Apache-2.0" }
1414
version = "0.1.0"

jupyter/pyproject.toml.jinja

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build-backend="hatchling.build"
99
[project]
1010
name = "{{project_name_formatted}}"
1111
authors = [{name = "{{team}}", email = "{{email}}"}]
12-
description="{{project_description}}"
12+
description = "{{project_description}}"
1313
readme = "README.md"
1414
license = { text = "Apache-2.0" }
1515
version = "0.1.0"

python/pyproject.toml.jinja

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend="hatchling.build"
55
[project]
66
name = "{{project_name_formatted}}"
77
authors = [{name = "{{team}}", email = "{{email}}"}]
8-
description="{{project_description}}"
8+
description = "{{project_description}}"
99
readme = "README.md"
1010
license = { text = "Apache-2.0" }
1111
version = "0.1.0"

rust/pyproject.toml.jinja

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "maturin"
55
[project]
66
name = "{{project_name_formatted}}"
77
authors = [{name = "{{team}}", email = "{{email}}"}]
8-
description="{{project_description}}"
8+
description = "{{project_description}}"
99
readme = "README.md"
1010
license = { text = "Apache-2.0" }
1111
version = "0.1.0"

0 commit comments

Comments
 (0)