Change pybind11 to a build dependency

This commit is contained in:
Ben Mares 2021-04-10 19:52:07 +02:00
parent 81ea3e74e4
commit 95847a2f92
2 changed files with 7 additions and 1 deletions

6
pyproject.toml Normal file
View File

@ -0,0 +1,6 @@
[build-system]
build-backend = 'setuptools.build_meta'
requires = [
'setuptools >= 49.2.1',
'pybind11 >= 2.2',
]

View File

@ -193,7 +193,7 @@ setup(
entry_points={"console_scripts": ["mamba = mamba.mamba:main"]},
long_description="A (hopefully faster) reimplementation of the slow bits of conda.",
ext_modules=ext_modules,
install_requires=["pybind11>=2.2"],
install_requires=[],
extras_require={"test": ["pytest"]},
cmdclass={"build_ext": BuildExt},
zip_safe=False,