提交 6ef9bab0 编写于 作者: T tangwei

add PY3 requires

上级 71e03371
""" """
setup for fleet-rec. setup for fleet-rec.
""" """
import sys
from setuptools import setup, find_packages from setuptools import setup, find_packages
requires = [ if sys.version_info.major == 2:
"paddlepaddle >= 0.0.0", requires = [
"netron >= 0.0.0", "paddlepaddle >= 0.0.0",
"yaml" "netron >= 0.0.0",
] "yaml"
]
else:
requires = [
"paddlepaddle >= 0.0.0",
"netron >= 0.0.0",
"pyyaml"
]
about = {} about = {}
about["__title__"] = "fleet-rec" about["__title__"] = "fleet-rec"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册