-
Notifications
You must be signed in to change notification settings - Fork 29
/
pyproject.toml
54 lines (43 loc) · 1.18 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
[project]
name = "leapfrogai"
description = "OpenAI-like capabilities for secure, local, air-gapped systems."
authors = [{ name = "LeapfrogAI Team", email = "[email protected]" }]
# x-release-please-start-version
version = "0.14.0"
# x-release-please-end
readme = "README.md"
license = { file = "LICENSE" }
dependencies = [ # Dev dependencies needed for all of LeapfrogAI
"openai == 1.32.1",
"pip-tools == 7.3.0",
"httpx == 0.27.2",
"ruff == 0.4.3",
"python-dotenv == 1.0.1",
]
requires-python = "~=3.11"
[project.optional-dependencies]
dev = [
"locust",
"pytest-asyncio",
"requests",
"requests-toolbelt",
"pytest",
"supabase == 2.6.0",
"huggingface_hub[cli,hf_transfer] ==0.25.1",
"fastapi == 0.109.1",
]
dev-whisper = ["ctranslate2 ==4.4.0", "transformers[torch] == 4.39.3"]
dev-vllm = ["confz == 2.0.1", "huggingface_hub ==0.25.1"]
[tool.pip-tools]
generate-hashes = true
[tool.ruff]
target-version = "py311"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "auto"
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"