-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (59 loc) · 1.8 KB
/
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[tool.poetry]
name = "agent-catalog"
version = "0.0.1"
description = "The mono-repo for the Couchbase Agent Catalog project."
repository = "https://github.com/couchbaselabs/agent-catalog"
authors = [
"Glenn Galvizo <glenn.galvizo@couchbase.com>",
"Tanvi Johari <tanvi.johari@couchbase.com>",
"Steve Yen <steve.yen@couchbase.com>",
"Thejas N U <thejas.nu@couchbase.com>"
]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
# All of our Agent Catalog packages.
[tool.poetry.group.agent-catalog.dependencies]
agentc = { path = "libs/agentc", develop = true }
agentc-core = { path = "libs/agentc_core", develop = true }
agentc-cli = { path = "libs/agentc_cli", develop = true }
agentc-langchain = { path = "libs/agentc_langchain", develop = true }
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.2.2"
pytest = "^8.3.2"
# An internal testing package for the Agent Catalog.
[tool.poetry.group.dev.dependencies.agentc-testing]
path = "libs/agentc_testing"
develop = true
[tool.poetry.group.docs.dependencies]
sphinx = "^8.1.3"
sphinx-copybutton = "^0.5.2"
sphinx-hoverxref = "^1.4.1"
linkify-it-py = "^2.0.3"
sphinx-autobuild = "^2024.10.3"
autodoc-pydantic = "^2.2.0"
sphinx-click = "^6.0.0"
sphinx-rtd-theme = "^3.0.1"
[tool.ruff]
line-length = 120
lint.select = ["F", "B", "I", "SIM"]
show-fixes = true
[tool.ruff.lint.isort]
no-sections = true
force-single-line = true
lines-between-types = 1
force-wrap-aliases = true
split-on-trailing-comma = false
[tool.pytest.ini_options]
markers = [
"smoke: marks smoke tests for running on each git-push",
"regression: marks regression tests for running on each git-push",
]
testpaths = [
"libs/agentc_core/tests"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"