-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.14 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
[project]
name = "blackgeorge"
version = "1.2.5"
description = "Agentic framework (runtime) with desk/worker/workforce primitives"
readme = "README.md"
license = { file = "LICENCE.md" }
authors = [{ name = "Dušan Jolović", email = "jolovic@pm.me" }]
urls = { Repository = "https://github.com/jolovicdev/blackgeorge" }
requires-python = ">=3.12"
dependencies = [
"chromadb>=1.5.8",
"instructor>=1.15.1",
"litellm>=1.83.13",
"mcp>=1.27.0",
"pydantic>=2.12.5",
]
[dependency-groups]
dev = [
"mypy>=1.20.2",
"mkdocs>=1.6.1",
"mkdocs-material>=9.7.6",
"pytest>=9.0.3",
"pytest-asyncio>=1.3.0",
"ruff>=0.15.11",
"mkdocs-llmstxt>=0.5.0",
]
[tool.pytest.ini_options]
addopts = "-ra"
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.mypy]
python_version = "3.12"
warn_unused_configs = true
disallow_untyped_defs = true
disallow_any_generics = true
no_implicit_optional = true
strict_equality = true
warn_return_any = true
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[build-system]
requires = ["uv_build>=0.9.11,<0.10.0"]
build-backend = "uv_build"