代码拉取完成,页面将自动刷新
"""
@Author: Chunel
@Contact: chunel@foxmail.com
@File: setup
@Time: 2025/3/6 23:25
@Desc:
"""
import glob
from setuptools import setup, Extension
import pybind11
__PYCGRAPH_NAME__ = "pycgraph"
__PYCGRAPH_VERSION__ = "3.2.3"
__PYCGRAPH_AUTHOR__ = "Chunel"
__PYCGRAPH_AUTHOR_EMAIL__ = "chunel@foxmail.com"
__PYCGRAPH_DESCRIPTION__ = "CGraph with python api wrapper by pybind11"
__PYCGRAPH_URL__ = "https://github.com/ChunelFeng/CGraph"
__PYCGRAPH_LICENSE__ = "MIT"
__PYCGRAPH_LONG_DESCRIPTION__ = 'You can get everything in CGraph github main page : [CGraph](https://github.com/ChunelFeng/CGraph)'
__PYCGRAPH_KEYWORDS__ = [__PYCGRAPH_NAME__,
"CGraph",
"dag",
"parallel",
"airflow",
"taskflow",
"workflow",
"pybind11"]
_sources = ['PyCGraph.cpp'] + glob.glob("../src/**/*.cpp", recursive=True)
_extra_compile_args = ["-pthread",
"-std=c++11",
"-fvisibility=hidden"]
_include_dirs = [pybind11.get_include(),
"../src"]
_ext_modules = [
Extension(
name=__PYCGRAPH_NAME__,
sources=_sources,
extra_compile_args=_extra_compile_args,
include_dirs=_include_dirs,
),
]
setup(
name=__PYCGRAPH_NAME__,
version=__PYCGRAPH_VERSION__,
author=__PYCGRAPH_AUTHOR__,
author_email=__PYCGRAPH_AUTHOR_EMAIL__,
description=__PYCGRAPH_DESCRIPTION__,
url=__PYCGRAPH_URL__,
license=__PYCGRAPH_LICENSE__,
ext_modules=_ext_modules,
zip_safe=False,
long_description=__PYCGRAPH_LONG_DESCRIPTION__,
long_description_content_type="text/markdown",
python_requires=">=3.8",
keywords=__PYCGRAPH_KEYWORDS__,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: C++",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"License :: OSI Approved :: MIT License",
"Natural Language :: Chinese (Simplified)",
"Natural Language :: English",
]
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。