我有一个setup.py文件,我想在setup.py中指定安装要求的平台和python版本,但是此设置不起作用
这是我尝试过的
install_requires=['pyproj>1.9.5.1;platform_system!="Windows";python_version>"3.4"']
我做不到
setup.py sdist bdist_wheel --universal
它无法在同一行中识别两个环境标记
任何想法或建议
答案 0 :(得分:0)
使用and
,or
和括号(
)
组合标记:
install_requires=['pyproj>1.9.5.1 ; platform_system != "Windows" and python_version > "3.4"']