11 lines
293 B
TOML
11 lines
293 B
TOML
|
|
|
||
|
|
[build-system]
|
||
|
|
requires = ["maturin>=1.0,<2.0"]
|
||
|
|
build-backend = "maturin"
|
||
|
|
|
||
|
|
[tool.maturin]
|
||
|
|
# "extension-module" tells pyo3 we want to build an extension module (skips linking against libpython.so)
|
||
|
|
features = ["pyo3/extension-module"]
|
||
|
|
# python-source = "python"
|
||
|
|
# module-name = "trictrac.game"
|