7acfda889f
One test case with a mixed python/native module using maturin, one using pure python using poetry. I'm avoiding adding one using legacy setuptools.
13 lines
233 B
TOML
13 lines
233 B
TOML
[project]
|
|
name = "maturin_editable"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.8"
|
|
|
|
[tool.maturin]
|
|
python-source = "python"
|
|
features = ["pyo3/extension-module"]
|
|
|
|
[build-system]
|
|
requires = ["maturin>=1.4,<2.0"]
|
|
build-backend = "maturin"
|