-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
49 lines (45 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[build-system]
build-backend = "scikit_build_core.build"
requires = [
"scikit-build-core>=0.10",
"pybind11>=2.12",
"ninja"
]
[project]
authors = [{ name = "JimyMa", email = "hit16s105116@gmail.com" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Topic :: System :: Networking",
"Topic :: System :: Systems Administration",
]
description = "DLSlime Transfer Engine"
name = "dlslime"
readme = "README.md"
requires-python = ">=3.8"
version = "0.0.2.post1"
dependencies = [
"xxhash",
"pydantic>=2.0",
# for --build-no-isolation
"scikit-build-core>=0.10",
"pybind11>=2.12",
]
[project.urls]
Homepage = "https://github.com/DeepLink-org/DLSlime.git"
Repository = "https://github.com/DeepLink-org/DLSlime.git"
[tool.scikit-build]
# optional env variable:
# BUILD_TORCH_PLUGIN: OFF
# BUILD_NVLINK: OFF
# USE_MACA: OFF
cmake.args = ["-G Ninja", "-DDLSLIME_INSTALL_PATH=dlslime", "-DBUILD_PYTHON=ON"]
cmake.build-type = "Release"
build-dir = "build"