pyproject.toml 387 B

12345678910
  1. [build-system]
  2. requires = [
  3. # The minimum setuptools version is specific to the PEP 517 backend,
  4. # and may be stricter than the version required in `setup.py`
  5. "setuptools>=40.6.0",
  6. "wheel",
  7. # Must be kept in sync with the `setup_requirements` in `setup.py`
  8. "cffi>=1.8,!=1.11.3; platform_python_implementation != 'PyPy'",
  9. ]
  10. build-backend = "setuptools.build_meta"