platform_python_implementation in pyproject.toml #4311
Answered
by
abravalheri
rochamatcomp
asked this question in
Q&A
-
Hello, everyone! I want to configuring setuptools using pyproject.toml files. However, I don't know what to do with the
Does anyone know if there is already a way to declare this? Thank you! |
Beta Was this translation helpful? Give feedback.
Answered by
abravalheri
Apr 19, 2024
Replies: 1 comment 1 reply
-
Hi @rochamatcomp, have you tried adding them to Something like: dependencies = [
# ...
'PyDispatcher>=2.0.5; platform_python_implementation == "CPython"',
'PyPyDispatcher>=2.0.5; platform_python_implementation == "PyPy"',
] (typing from the phone app, so please double-check). |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
rochamatcomp
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @rochamatcomp, have you tried adding them to
dependencies
?Something like:
(typing from the phone app, so please double-check).