-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (81 loc) · 2.63 KB
/
Copy pathpyproject.toml
File metadata and controls
92 lines (81 loc) · 2.63 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[project]
name = "lm-proxy"
version = "3.3.2"
description = "LM-Proxy is an OpenAI-compatible http proxy server for inferencing various LLMs capable of working with Google, Anthropic, OpenAI APIs, local PyTorch inference, etc."
readme = "README.md"
keywords = ["llm", "large language models", "ai", "gpt", "openai", "proxy", "http", "proxy-server", "llm gateway", "openai", "anthropic", "google genai"]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Development Status :: 5 - Production/Stable",
]
requires-python = ">=3.11,<4"
authors = [
{ name = "Vitalii Stepanenko", email = "mail@vitaliy.in" },
]
maintainers = [
{ name = "Vitalii Stepanenko", email = "mail@vitaliy.in" },
{ name = "Nikita Sahaidachnyi", email = "nikita.sahaidachnyi@gmail.com"},
{ name = "Dariia Stepanenko", email = "zozulinadarina97@gmail.com"},
]
homepage = "https://github.com/Nayjest/lm-proxy"
repository = "https://github.com/Nayjest/lm-proxy"
documentation = "https://github.com/Nayjest/lm-proxy#readme"
license = "MIT"
dependencies = [
"ai-microcore>=6.7.2,<7",
"fastapi>=0.141.1,<1",
"uvicorn>=0.52.4",
"typer>=0.27.1,<1",
"requests>=2.34.2,<3",
"pydantic~=2.12.5",
"websockets>=14.0,<18",
]
[project.optional-dependencies]
test = [
"pytest~=9.1.1",
"pytest-asyncio~=1.4.0",
"pytest-cov~=7.1.0"
]
google = [
"google-genai>=1.62.0,<3",
]
anthropic = [
"anthropic>=0.77,<2",
]
all = [
"google-genai>=1.62.0,<3",
"anthropic>=0.77,<2",
]
[project.urls]
"Source Code" = "https://github.com/Nayjest/lm-proxy"
"Bug Tracker" = "https://github.com/Nayjest/lm-proxy/issues"
[project.entry-points."config.loaders"]
toml = "lm_proxy.config_loaders:load_toml_config"
py = "lm_proxy.config_loaders:load_python_config"
yml = "lm_proxy.config_loaders:load_yaml_config"
yaml = "lm_proxy.config_loaders:load_yaml_config"
json = "lm_proxy.config_loaders:load_json_config"
[project.scripts]
lm-proxy = "lm_proxy.app:cli_app"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
package-mode = true
packages = [{ include = "lm_proxy"}]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = [
"tests",
]
[tool.black]
line-length = 100