This website requires JavaScript.
Explore
Help
Register
Sign In
Virtualization
/
meson
mirror of
https://gitlab.com/qemu-project/meson.git
Watch
1
Star
0
Fork
You've already forked meson
0
Code
Issues
Projects
Releases
Wiki
Activity
34da721ec2
meson
/
pyproject.toml
4 lines
94 B
TOML
Raw
Normal View
History
Unescape
Escape
Ensure setuptools via PEP508/518 pyproject.toml
2019-11-02 22:17:13 +08:00
[
build-system
]
setup.py: better requirements The first version of setuptools to properly support pyproject.toml was 42 (40-41 were buggy). It is also necessary to specify `build-backend = "setuptools.build_meta"`, otherwise you get the (horrible) default `build-backend = "setuptools.build_meta:__legacy__"`.
2022-02-09 12:45:33 +08:00
requires
=
[
"setuptools>=42"
,
"wheel"
]
build-backend
=
"setuptools.build_meta"