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

[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
license = { file = "LICENSE" }
classifiers = [
17
18
  "Programming Language :: Python :: 3",
  "License :: OSI Approved :: Apache Software License",
19
  "Environment :: GPU :: NVIDIA CUDA"
20
]
21
dependencies = []
22
23

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

[tool.wheel]
exclude = [
29
30
  "dist*",
  "tests*",
31
]
32
33
34
35
36

[tool.scikit-build]
cmake.build-type = "Release"
minimum-version = "build-system.requires"

37
wheel.py-api = "cp310"
38
39
wheel.license-files = []
wheel.packages = ["python/sgl_kernel"]