7 Star 35 Fork 18

meta-soul / LakeSoul

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pyproject.toml 2.06 KB
一键复制 编辑 原始数据 按行查看 历史
Xu Chen 提交于 2024-01-27 14:43 . [Python] Fix python host build (#434)
# SPDX-FileCopyrightText: 2023 LakeSoul Contributors
#
# SPDX-License-Identifier: Apache-2.0
[build-system]
requires = ["setuptools >= 62.1.0", "wheel", "cython >= 0.29.31,<3"]
build-backend = "setuptools.build_meta"
[project]
name = "lakesoul"
version = "1.0.0b1"
authors = [
{ name="LakeSoul Team", email="lakesoul-technical-discuss@lists.lfaidata.foundation" },
]
description = "Python APIs for using LakeSoul"
readme = "README.md"
license = { text="Apache-2.0" }
requires-python = ">=3.8"
keywords = ["lakesoul", "bigdata", "ai"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
]
dependencies = [
"pyarrow~=12.0",
"grpcio[protobuf]~=1.57",
]
[project.urls]
"Homepage" = "https://github.com/lakesoul-io/LakeSoul"
"Bug Tracker" = "https://github.com/lakesoul-io/LakeSoul/issues"
[tool.setuptools.packages.find]
where = ["python"]
include = ["lakesoul*"]
[project.optional-dependencies]
torch = ["torch>=1.11"]
pandas = ["pandas>=1.4"]
datasets = ["datasets>=2.14", "urllib3<2,>=1.21.1"]
ray = ["ray>=2.7"]
all = [
"torch>=1.11",
"pandas>=1.4",
"datasets>=2.14",
"urllib3<2,>=1.21.1",
"ray>=2.7",
]
[tool.cibuildwheel]
manylinux-x86_64-image = "dmetasoul/lakesoul-python-wheel-build-env-manylinux2014:v1.0.0"
build = "*-manylinux_x86_64"
skip = ["cp36-*", "cp37-*", "cp311-*", "cp312-*", "pp*"]
[tool.cibuildwheel.linux]
before-build = "rm -rf {project}/cpp/build && {project}/cpp/compile.sh"
repair-wheel-command = """\
auditwheel repair --plat manylinux2014_x86_64 \
--exclude libarrow_python.so \
--exclude libarrow_dataset.so.1200 \
--exclude libarrow_acero.so.1200 \
--exclude libparquet.so.1200 \
--exclude libarrow.so.1200 \
-w {dest_dir} {wheel}\
"""
Scala
1
https://gitee.com/meta-soul/LakeSoul.git
git@gitee.com:meta-soul/LakeSoul.git
meta-soul
LakeSoul
LakeSoul
main

搜索帮助