Skip to content

Commit ee65916

Browse files
committed
re
1 parent 2bb91a6 commit ee65916

File tree

2 files changed

+8
-20
lines changed

2 files changed

+8
-20
lines changed

examples/conan_cmake/simple/pyproject.toml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,21 @@ description = "A simple project showing how to use conan with CPPython"
33
name = "cppython-conan-cmake-simple"
44
version = "1.0.0"
55

6-
license = {text = "MIT"}
6+
license = { text = "MIT" }
77

8-
authors = [
9-
{name = "Synodic Software", email = "contact@synodic.software"},
10-
]
8+
authors = [{ name = "Synodic Software", email = "contact@synodic.software" }]
119

1210
requires-python = ">=3.13"
1311

14-
dependencies = [
15-
"cppython>=0.1.0",
16-
]
12+
dependencies = ["cppython>=0.1.0"]
1713

1814
[tool.cppython]
1915
generator-name = "cmake"
2016
provider-name = "conan"
2117

2218
install-path = "install"
2319

24-
dependencies = [
25-
"fmt>=11.0.1",
26-
]
20+
dependencies = ["fmt>=11.0.1"]
2721

2822
[tool.cppython.generator]
2923

examples/vcpkg_cmake/simple/pyproject.toml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,21 @@ description = "A simple project showing how to use vcpkg with CPPython"
33
name = "cppython-vcpkg-cmake-simple"
44
version = "1.0.0"
55

6-
license = {text = "MIT"}
6+
license = { text = "MIT" }
77

8-
authors = [
9-
{name = "Synodic Software", email = "contact@synodic.software"},
10-
]
8+
authors = [{ name = "Synodic Software", email = "contact@synodic.software" }]
119

1210
requires-python = ">=3.13"
1311

14-
dependencies = [
15-
"cppython>=0.1.0",
16-
]
12+
dependencies = ["cppython>=0.1.0"]
1713

1814
[tool.cppython]
1915
generator-name = "cmake"
2016
provider-name = "vcpkg"
2117

2218
install-path = "install"
2319

24-
dependencies = [
25-
"fmt>=11.0.2",
26-
]
20+
dependencies = ["fmt>=11.0.2"]
2721

2822
[tool.cppython.generator]
2923

0 commit comments

Comments
 (0)