-
Notifications
You must be signed in to change notification settings - Fork 749
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 1012 Bytes
/
pyproject.toml
File metadata and controls
51 lines (43 loc) · 1012 Bytes
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
[tool.poetry]
name = "docs-agent"
version = "0.3.5"
description = ""
authors = ["Docs Agent contributors"]
readme = "README.md"
packages = [{include = "docs_agent"}]
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
rich = "^13.3.5"
Markdown = "^3.4.3"
beautifulsoup4 = "^4.12.2"
protobuf = ">=3.20"
ratelimit = "^2.2.1"
absl-py = "^1.4.0"
python-frontmatter = "^1.0.0"
flatdict = "^4.0.1"
google-generativeai = "^0.5.0"
uuid = "^1.30"
pytz = ">=2020.1"
chromadb = "^0.4.22"
click = "^8.1.7"
pyyaml = "^6.0.1"
numpy = "^1.26.4"
tqdm = "^4.66.3"
flask = "^2.3.2"
[tool.poetry.group.dev.dependencies]
ipython = "^8.13.2"
pylint = "^2.17.4"
black = "^24.3.0"
deptry = "^0.13.0"
[tool.deptry.per_rule_ignores]
DEP003 = ["docs_agent"]
DEP002 = ["uuid"]
[tool.poetry.group.internal]
optional = true
[tool.poetry.group.internal.dependencies]
seqio = "^0.0.16"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
agent = "docs_agent.interfaces.cli.cli:cli"