Replies: 1 comment
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm currently transferring my project build pipeline from being
setup.py
-based to apyproject.toml
-based approach. Most of the parameters are easily transferable, however, I can't find an equivalent toOf course, there is
but while the setting in
setup.py
results inin the package name, the same setting in
pyproject.toml
results inin the package name.
As the package contains several dll-files which have to be compiled specific to each python version, I want to reflect that also in the package name (and ideally refuse installation if a wrong python installation is used). How can I solve that by using
pyproject.toml
? Similarly, how can I build packages specifically for Windows/Unix/MacOS using this approach, something which is possible usingsetup.py
?Beta Was this translation helpful? Give feedback.
All reactions