Files
OpenLLM/pyproject.toml
Frost Ming 750025664c feat: Use uv for venv management (#3)
* feat: Use uv for venv management

Signed-off-by: Frost Ming <me@frostming.com>

* fix: exe suffix

Signed-off-by: Frost Ming <me@frostming.com>

---------

Signed-off-by: Frost Ming <me@frostming.com>
2024-07-02 14:52:08 +08:00

34 lines
649 B
TOML

[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openllm-next"
version = "0.0.1"
description = "A description of your package."
authors = [{name = "oasiszero", email = "oasis0.com@gmail.com"}]
license = {file = "LICENSE"}
dependencies = [
"bentoml",
"typer",
"questionary",
"pyaml",
"psutil",
"pathlib",
"pip_requirements_parser",
"nvidia-ml-py",
"dulwich",
"tabulate",
"uv",
]
[project.scripts]
openllm = "openllm_next.__main__:main"
[tool.typer]
src-dir = "openllm_next"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true