pyproject.toml 369 B

123456789101112131415
  1. [build-system]
  2. requires = ["maturin>=1.0,<2.0"]
  3. build-backend = "maturin"
  4. [project]
  5. name = "darkfi-sdk"
  6. requires-python = ">=3.9"
  7. classifiers = [
  8. "Programming Language :: Rust",
  9. "Programming Language :: Python :: Implementation :: CPython",
  10. "Programming Language :: Python :: Implementation :: PyPy",
  11. ]
  12. [tool.maturin]
  13. features = ["pyo3/extension-module"]