-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (59 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
67 lines (59 loc) · 1.37 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
[project]
name = "weaviate-agents"
version = "1.5.0"
description = "The official sub-package for the Weaviate Agents project."
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"httpx-sse>=0.4.0",
"rich>=13.9.4",
"weaviate-client>=4.11.0",
]
[build-system]
requires = [
"setuptools >= 65",
"setuptools_scm[toml] >6.2",
"wheel >= 0.38.1",
]
build-backend = 'setuptools.build_meta'
[dependency-groups]
dev = [
"mypy>=1.15.0",
"pre-commit>=4.1.0",
"pytest-cov>=6.0.0",
"pytest>=8.3.4",
"ruff>=0.9.6",
"tomli>=2.2.1",
"pytest-asyncio>=0.26.0",
]
[tool.setuptools.packages.find]
where = ["."] # Search in current directory
exclude = [
"bash*",
"tests*",
"docs*",
"scripts*",
]
[tool.setuptools]
license-files = []
[tool.ruff]
lint.select = ["E", "F", "I", "D"]
lint.ignore = ["D100", "D101", "D102", "D103", "D104", "D105", "D107", "E501"]
exclude = [
"tests",
"docs",
"scripts",
"bash",
".venv",
".git",
"__pycache__",
]
# D100: Missing docstring in a public module
# D101: Missing docstring in a public class
# D102: Missing docstring in a public method
# D103: Missing docstring in a public function
# D104: Missing docstring in a public package
# D105: Missing docstring in a magic method
# D107: Missing docstring in an __init__ method
[tool.ruff.lint.pydocstyle]
convention = "google"