ec436095dd
Book-CI / test (macos-latest) (push) Waiting to run
Deploy / deploy (macos-latest) (push) Waiting to run
Deploy / deploy (ubuntu-latest) (push) Waiting to run
Deploy / deploy (windows-latest) (push) Waiting to run
Release to PyPI / Build & publish sglang-kt (push) Waiting to run
Release to PyPI / Build kt-kernel (Python 3.11) (push) Waiting to run
Release to PyPI / Build kt-kernel (Python 3.12) (push) Waiting to run
Release to PyPI / Publish kt-kernel to PyPI (push) Blocked by required conditions
Book-CI / test (ubuntu-latest) (push) Waiting to run
Book-CI / test (windows-latest) (push) Waiting to run
Release Fake Tag / publish (push) Waiting to run
25 lines
746 B
TOML
25 lines
746 B
TOML
[build-system]
|
|
requires = ["setuptools>=61"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "ktransformers"
|
|
dynamic = ["version", "dependencies", "optional-dependencies"]
|
|
description = "KTransformers: CPU-GPU heterogeneous inference framework for LLMs"
|
|
readme = "README.md"
|
|
authors = [{ name = "kvcache-ai" }]
|
|
license = "Apache-2.0"
|
|
requires-python = ">=3.11"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: POSIX :: Linux",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/kvcache-ai/ktransformers"
|
|
|
|
[tool.setuptools]
|
|
# Ship a minimal top-level Python module so the distribution is importable
|
|
# without keeping a parallel source package directory at the repository root.
|
|
py-modules = ["ktransformers"]
|