-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 901 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (31 loc) · 901 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
[build-system]
requires = ["hatchling>=1.18.0"]
build-backend = "hatchling.build"
[project]
name = "rag-runner"
version = "0.1.0"
description = "Automated RAG manual generator: watches sources, regenerates a cited manual, and builds a knowledge graph."
readme = "README.md"
requires-python = ">=3.10,<3.12"
license = { text = "MIT" }
authors = [
{ name = "Your Name", email = "[email protected]" }
]
# Keep runtime deps here minimal to avoid duplicating the long locked list.
# Use requirements.txt for exact environment pinning.
dependencies = [
"chromadb>=1.1.1,<2",
"markdown>=3.4",
"openpyxl>=3.1",
"pandas>=2.2",
"python-docx>=1.0",
"PyYAML>=6.0",
"requests>=2.31",
"watchdog>=4.0"
]
[project.scripts]
rag-runner = "rag_runner.run:main"
[tool.hatch.build.targets.wheel]
packages = [{include = "rag_runner", from = "src"}]
[tool.hatch.metadata]
allow-direct-references = true