Replies: 1 comment 1 reply
-
I'll look into this. I thought it would be good to keep the 3rd party requirements as minimal as possible, even though we do provide binary wheels. But if it is pretty standard and useful, it might be worth it. The other important consideration is how easy it is to use on GitHub's CI, which we use to build the binary wheels. If it is provided with their standard builds, that would be helpful. I'll check it out. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Here are a few examples that show using a
pyproject.toml
file along with ameson.build
file with no setup.py file.https://github.com/numpy/numpy-user-dtypes
Here is the doucmentation to meson-python https://github.com/mesonbuild/meson-python. I've tried it out, and it works well. The plus side is that it removes the need for a setup.py file and meson is a familiar tool for C.
Beta Was this translation helpful? Give feedback.
All reactions