pyproject.toml 911 Bytes
Newer Older
1
[build-system]
2
3
requires = ["setuptools>=45", "wheel", "setuptools-rust>=1.5.2"]
build-backend = "setuptools.build_meta"
4
5

[project]
6
name = "sglang-router"
7
version = "0.1.9"
8
description = "High-performance Rust-based load balancer for SGLang with multiple routing algorithms and prefill-decode disaggregation support"
9
10
11
authors = [{name = "Byron Hsu", email = "byronhsu1230@gmail.com"}]
requires-python = ">=3.8"
readme = "README.md"
12
license = { text = "Apache-2.0" }
13
14
classifiers = [
    "Programming Language :: Python :: Implementation :: CPython",
15
16
    "Programming Language :: Rust",
    "Programming Language :: Python :: 3",
17
18
]

19
20
21
22
23
[project.optional-dependencies]
dev = [
    "requests>=2.25.0",
]

24
25
26
27
# https://github.com/PyO3/setuptools-rust?tab=readme-ov-file
[tool.setuptools.packages]
find = { where = ["py_src"] }

28
29
30
# workaround for https://github.com/pypa/twine/issues/1216
[tool.setuptools]
license-files = []