-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 1.05 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
[project]
name = "multiverse-note"
version = "2.0.0"
description = "Terminal-based AI chatbot with structured knowledge management workflows"
requires-python = ">=3.11"
dependencies = [
"textual>=0.85.0",
"redis[hiredis]>=5.0.0",
"litellm>=1.50.0",
"hydra-core>=1.3.0",
"omegaconf>=2.3.0",
"pdfplumber>=0.11.0",
"python-docx>=1.1.0",
"openpyxl>=3.1.0",
"python-pptx>=1.0.0",
]
[project.scripts]
multiverse = "multiverse_note.main:main"
start = "multiverse_note.main:start"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/multiverse_note"]
[tool.hatch.build.targets.wheel.force-include]
"src/multiverse_note/conf" = "multiverse_note/conf"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
addopts = "-p no:ament_copyright -p no:ament_flake8 -p no:ament_lint -p no:ament_pep257 -p no:ament_xmllint -p no:launch_testing -p no:launch_ros"
[dependency-groups]
dev = [
"pytest>=8.0.0",
"fakeredis>=2.25.0",
"pytest-asyncio>=0.24.0",
]