-
Notifications
You must be signed in to change notification settings - Fork 29
/
pyproject.toml
43 lines (35 loc) · 967 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
[project]
name = "leapfrogai-sdk"
description = "A tool for building gRPC-based model backends for LeapfrogAI"
# x-release-please-start-version
version = "0.14.0"
# x-release-please-end
dependencies = [
"grpcio ==1.66.1",
"grpcio-tools == 1.62.1",
"protobuf == 4.23.3",
"grpcio-reflection == 1.62.1.0",
"grpcio-health-checking == 1.62.1",
"confz == 2.0.1",
"pydantic == 2.8.2",
"click == 8.1.7",
]
requires-python = "~=3.11"
[project.scripts]
lfai-cli = "leapfrogai_sdk.cli:cli"
[tool.pip-tools]
generate-hashes = true
[tool.setuptools.packages.find]
where = ["../"]
include = ["leapfrogai_sdk*"]
exclude = ["leapfrogai_sdk/proto"]
namespaces = false
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
[tool.ruff]
target-version = "py311"
# exclude generated grpc code
exclude = ["audio", "chat", "completion", "embeddings", "name"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"