Building cython extensions using only pyproject.toml (no setup.py) #4154
-
I am working on a python project that requires the use of cython extension modules. As of now, I am using both a |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
It is current not possible to configure |
Beta Was this translation helpful? Give feedback.
-
If you're feeling adventurous, check out what I did @ https://github.com/aio-libs/yarl/tree/a3df0aa/packaging. But this is a very non-standard approach that involves monkey-patching, so it's rather dangerous. Do not try at home! |
Beta Was this translation helpful? Give feedback.
It is current not possible to configure
ext_modules
inpyproject.toml
. For the time being you need both files.