加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
setup.py 646 Bytes
一键复制 编辑 原始数据 按行查看 历史
cat_lin 提交于 2023-12-27 01:56 . update setup.py.
from setuptools import setup
MAIN_REQUIREMENTS = [
"pydantic==1.10.11",
"esdk-obs-python",
"prefect>=2.10.11"
]
setup(
name="prefect-hwc",
description="Prefect collection of tasks and sub flows to integrate with HuaweiCloud",
license="Apache License 2.0",
author="HuaweiCloud",
author_email="",
keywords="prefect",
url="https://gitee.com/HuaweiCloudDeveloper/huaweicloud-prefect-block-python",
version="0.1.0",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
python_requires=">=3.9",
install_requires=MAIN_REQUIREMENTS,
classifiers=[],
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化