fonttools/pyproject.toml
Cosimo Lupo cd6e79b187
pyproject.toml: always install cython as PEP518 build dependency
else pip >= 19 doesn't see cython even if it's installed outside the isolated build environment.

One can use --no-build-isolation to prevent that.

https://github.com/pypa/pip/issues/6144
2019-04-12 14:51:33 +01:00

9 lines
137 B
TOML

[build-system]
requires = [
"setuptools",
"wheel",
"setuptools_scm",
"cython",
]
build-backend = "setuptools.build_meta"