pyproject.toml 387 B

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