-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (64 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
75 lines (64 loc) · 1.41 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
[project]
name = "llm-venice"
version = "0.8.2"
description = "LLM plugin to access models available via the Venice API"
readme = "README.md"
authors = [{name = "Arjan Mossel"}]
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: Apache Software License"
]
dependencies = [
"llm>=0.28",
]
[project.urls]
Homepage = "https://github.com/ar-jan/llm-venice"
Changelog = "https://github.com/ar-jan/llm-venice/releases"
Issues = "https://github.com/ar-jan/llm-venice/issues"
CI = "https://github.com/ar-jan/llm-venice/actions"
[project.entry-points.llm]
venice = "llm_venice"
[project.optional-dependencies]
test = [
"jsonschema",
"pytest",
"pytest-httpx",
"sqlite_utils",
]
dev = [
"ruff>=0.14.8",
"pyright",
]
[tool.pytest.ini_options]
markers = [
"integration: marks integration tests that call external APIs"
]
addopts = "-m 'not integration'"
[tool.uv]
managed = false
[tool.ruff]
line-length = 100
indent-width = 4
target-version = "py310"
[tool.ruff.lint]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
docstring-code-format = true
line-ending = "lf"
[tool.pyright]
include = [
"llm_venice",
"tests",
]
exclude = [
"**/__pycache__",
]
defineConstant = { DEBUG = true }
reportMissingImports = "error"
pythonVersion = "3.12"
pythonPlatform = "Linux"
venvPath = "."
venv = ".venv"