pyproject_cpu.toml 782 Bytes
Newer Older
1
2
3
[build-system]
requires = [
  "scikit-build-core>=0.10",
4
  "torch>=2.7.1",
5
6
7
8
9
10
  "wheel",
]
build-backend = "scikit_build_core.build"

[project]
name = "sgl-kernel"
11
version = "0.3.5"
12
13
description = "Kernel Library for SGLang"
readme = "README.md"
14
requires-python = ">=3.10"
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
license = { file = "LICENSE" }
classifiers = [
  "Programming Language :: Python :: 3",
  "License :: OSI Approved :: Apache Software License",
  "Environment :: CPU"
]
dependencies = []

[project.urls]
"Homepage" = "https://github.com/sgl-project/sglang/tree/main/sgl-kernel"
"Bug Tracker" = "https://github.com/sgl-project/sglang/issues"

[tool.wheel]
exclude = [
  "dist*",
  "tests*",
]

[tool.scikit-build]
cmake.source-dir = "csrc/cpu"
cmake.build-type = "Release"
minimum-version = "build-system.requires"