forked from defenseunicorns/leapfrogai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (42 loc) · 979 Bytes
/
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
[project]
name = "leapfrogai"
description = "ChatGPT type capabilities for secure, local, air-gapped systems."
authors = [{ name = "LeapfrogAI Team", email = "[email protected]" }]
# x-release-please-start-version
version = "0.10.0"
# x-release-please-end
readme = "README.md"
license = {file = "LICENSE"}
dependencies = [ # Dev dependencies needed for all of lfai
"openai",
"pip-tools == 7.3.0",
"httpx",
"ruff",
"python-dotenv"
]
requires-python = "~=3.11"
[project.optional-dependencies]
dev = [
"locust",
"pytest-asyncio",
"requests",
"requests-toolbelt",
"pytest",
"huggingface_hub[cli,hf_transfer]"
]
dev-whisper = [
"ctranslate2",
"transformers[torch]"
]
dev-vllm = [
"confz"
]
[tool.pip-tools]
generate-hashes = true
[tool.ruff]
target-version = "py311"
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"