pyproject.toml 694 Bytes
Newer Older
1
[build-system]
2
requires = [
3
  "setuptools>=75.0",
4
5
6
7
  "scikit-build-core>=0.10",
  "torch==2.5.1",
  "wheel",
]
8
9
10
11
build-backend = "setuptools.build_meta"

[project]
name = "sgl-kernel"
Yineng Zhang's avatar
Yineng Zhang committed
12
version = "0.0.5"
13
14
description = "Kernel Library for SGLang"
readme = "README.md"
15
requires-python = ">=3.9"
16
17
license = { file = "LICENSE" }
classifiers = [
18
19
  "Programming Language :: Python :: 3",
  "License :: OSI Approved :: Apache Software License",
20
  "Environment :: GPU :: NVIDIA CUDA"
21
]
22
dependencies = []
23
24

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

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