-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCLI_PYPROJECT.toml
More file actions
36 lines (30 loc) · 960 Bytes
/
CLI_PYPROJECT.toml
File metadata and controls
36 lines (30 loc) · 960 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# This file shows what the future CLI-only package pyproject.toml would look like
# Once CLI is separated into its own package: highflame-cli
# This serves as a reference for the CLI package separation plan
[tool.poetry]
name = "highflame-cli"
version = "2.0.0"
description = "Command-line interface for Highflame - LLM Gateway Management"
authors = ["Sharath Rajasekar <sharath@highflame.com>"]
readme = "README.md"
license = "Apache-2.0"
homepage = "https://highflame.com"
repository = "https://github.com/highflame-ai/highflame-cli"
packages = [
{ include = "highflame_cli" },
]
[tool.poetry.scripts]
highflame-cli = "highflame_cli.cli:main"
[tool.poetry.dependencies]
python = "^3.9"
highflame = "^2.0.0"
requests = "^2.32.3"
[tool.poetry.group.dev.dependencies]
black = "24.3.0"
flake8 = "^7.3.0"
pre-commit = "^3.3.1"
pytest = "^8.3.5"
pytest-mock = "^3.10.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"