Files
sglang/sgl-kernel/pyproject.toml

32 lines
785 B
TOML
Raw Normal View History

2024-12-01 20:11:21 +08:00
[build-system]
requires = ["setuptools>=61.0", "wheel", "torch"]
2024-12-01 20:11:21 +08:00
build-backend = "setuptools.build_meta"
[project]
name = "sgl-kernel"
version = "0.0.3.post1"
2024-12-01 20:11:21 +08:00
description = "Kernel Library for SGLang"
readme = "README.md"
2025-01-23 19:16:35 +08:00
requires-python = ">=3.9"
2024-12-01 20:11:21 +08:00
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Environment :: GPU :: NVIDIA CUDA"
]
dependencies = []
2024-12-01 20:11:21 +08:00
[project.urls]
"Homepage" = "https://github.com/sgl-project/sglang/tree/main/sgl-kernel"
2024-12-01 20:11:21 +08:00
"Bug Tracker" = "https://github.com/sgl-project/sglang/issues"
[tool.setuptools]
package-dir = {"sgl_kernel" = "src/sgl-kernel"}
packages = ["sgl_kernel", "sgl_kernel.ops", "sgl_kernel.csrc"]
2024-12-01 20:11:21 +08:00
[tool.wheel]
exclude = [
"dist*",
"tests*",
2024-12-01 20:11:21 +08:00
]