-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (39 loc) · 1021 Bytes
/
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
[project]
authors = [
{name = "Flávio Codeço Coelho", email = "[email protected]"},
]
license = {text = "GPLv3"}
requires-python = ">=3.11,<4.0"
dependencies = [
"fire<1.0.0,>=0.6.0",
"pgvector<1.0.0,>=0.2.5",
"python-dotenv<2.0.0,>=1.0.1",
"asyncpg<1.0.0,>=0.29.0",
"sqlalchemy<3.0.0,>=2.0.29",
"pymupdf<2.0.0,>=1.24.1",
"loguru<1.0.0,>=0.7.2",
"psycopg2-binary<3.0.0,>=2.9.9",
"base-ai-agent @ git+https://github.com/Deeplearn-PeD/base-ai-agent.git",
"pyaml<25.0.0,>=24.4.0",
"sqlmodel<1.0.0,>=0.0.18",
"pymupdf4llm<1.0.0,>=0.0.5",
"sqlite-vss>=0.1.2",
"duckdb>=1.1.3",
"duckdb-engine>=0.14.0",
]
name = "libby"
version = "0.3.9"
description = "Libby the Librarian Bot."
readme = "README.md"
[tool.uv]
package = true
[project.scripts]
libby = "libbydbot.cli:main"
[tool.setuptools.package-data]
libbydbot = ["config.yml"]
[project.optional-dependencies]
dev = [
"pytest<9.0.0,>=8.1.1",
"mkdocs<2.0.0,>=1.5.3",
"aider-chat>=0.63.2",
]