-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
64 lines (54 loc) · 1.23 KB
/
pyproject.toml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[project]
name = "glide-client"
description = "An official Python client for Glide, an open resilient fast model gateway"
license = {text = "Apache-2.0"}
authors = [
{name = "Roman Hlushko", email = "[email protected]"},
]
dynamic = ["version"]
readme = "README.md"
keywords = [
"llm",
"llmops",
"gateway",
"infrastructure",
]
dependencies = [
"httpx>=0.26.0",
"websockets>=12.0",
"pydantic>=2.6.1",
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://glide.einstack.ai/"
Documentation = "https://glide.einstack.ai/"
Repository = "https://github.com/EinStack/glide-py.git"
Issues = "https://github.com/EinStack/glide-py/issues/"
[tool.pdm.version]
source = "scm"
write_to = "glide/version.py"
write_template = """
# Copyright EinStack
# SPDX-License-Identifier: APACHE-2.0
import sys
from typing import Final
PYTHON_VERSION: Final[str] = ".".join(
(
str(sys.version_info.major),
str(sys.version_info.minor),
str(sys.version_info.micro),
)
)
__version__: Final[str] = "{}"
"""
[tool.pdm.dev-dependencies]
dev = [
"ruff>=0.2.2",
"mypy>=1.8.0",
"black>=24.2.0",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true