Skip to content

Commit 7385c15

Browse files
committed
Add Optionsals
1 parent 45974a1 commit 7385c15

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

examples/conan_cmake/simple/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ 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 = [{ name = "Synodic Software", email = "contact@synodic.software" }]
8+
authors = [{name = "Synodic Software", email = "contact@synodic.software"}]
99

1010
requires-python = ">=3.13"
1111

12-
dependencies = ["cppython>=0.1.0"]
12+
dependencies = ["cppython[conan, cmake]>=0.1.0"]
1313

1414
[tool.cppython]
1515
generator-name = "cmake"

examples/vcpkg_cmake/simple/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ 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 = [{ name = "Synodic Software", email = "contact@synodic.software" }]
8+
authors = [{name = "Synodic Software", email = "contact@synodic.software"}]
99

1010
requires-python = ">=3.13"
1111

12-
dependencies = ["cppython>=0.1.0"]
12+
dependencies = ["cppython[vcpkg, cmake]>=0.1.0"]
1313

1414
[tool.cppython]
1515
generator-name = "cmake"

0 commit comments

Comments
 (0)