I'd like to reorganize my project as described here to be able to work on it with my friends. Unfortunately I don't know any way to determine python version >= 3 as meta data inside the setup block.
I know I could do an if-statement like answered here but I wonder why I cannot just state in in the setup settings (like with composer in php). I would have thought that the minimal version of the interpreter would be the first requirement to make...
I additionally cannot find a really complete listing of options to use in the setup block.
So is there really no way to determine the python version "the right way"? ;)
Asked
Active
Viewed 372 times
1

Community
- 1
- 1

32bitfloat
- 751
- 2
- 8
- 21
-
That *is* the right way; see also http://stackoverflow.com/q/19534896/3001761, http://stackoverflow.com/q/13924931/3001761 – jonrsharpe May 02 '15 at 11:35
-
@jonrsharpe but why? is there any reason to not include this inside the setup block? – 32bitfloat May 03 '15 at 22:27