加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.61 KB
一键复制 编辑 原始数据 按行查看 历史
from setuptools import find_packages, setup
import versioneer
with open("requirements.txt") as install_requires_file:
install_requires = install_requires_file.read().strip().split("\n")
with open("requirements-dev.txt") as dev_requires_file:
dev_requires = dev_requires_file.read().strip().split("\n")
with open("README.md") as readme_file:
readme = readme_file.read()
setup(
name="prefect-dask",
description="Prefect integrations with the Dask execution framework.",
license="Apache License 2.0",
author="Prefect Technologies, Inc.",
author_email="help@prefect.io",
keywords="prefect",
url="https://github.com/PrefectHQ/prefect-dask",
long_description=readme,
long_description_content_type="text/markdown",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(exclude=("tests", "docs")),
python_requires=">=3.7",
install_requires=install_requires,
extras_require={"dev": dev_requires},
entry_points={
"prefect.collections": [
"prefect_dask = prefect_dask",
]
},
classifiers=[
"Natural Language :: English",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
],
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化