Browse Source

setup-requires add pybind11

master
heck 4 years ago
parent
commit
56c7fcc92e
  1. 5
      examples/ext/lib_test/pyproject.toml
  2. 1
      examples/ext/lib_test/setup.cfg

5
examples/ext/lib_test/pyproject.toml

@ -3,7 +3,10 @@
# These requires are not effective yet, setup.cfg is.
requires = [
"setuptools >=39.2.0",
"wheel >= 0.35.1", ]
"wheel >= 0.35.1",
"pybind11 >= 2.6.2"
]
build-backend = "setuptools.build_meta"

1
examples/ext/lib_test/setup.cfg

@ -34,6 +34,7 @@ install_requires =
setup_requires =
setuptools >=39.2.0
wheel >= 0.35.1
pybind11 >= 2.6.2
[options.extras_require]
# To install these dependencies, run pip install .[test]

Loading…
Cancel
Save