-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
28 lines (24 loc) · 1.07 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
[project]
name = "rag-chunk"
version = "0.4.0"
description = "CLI tool to parse, chunk, and evaluate Markdown documents for RAG pipelines with token-accurate chunking support"
authors = [ { name = "messkan" } ]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.9"
keywords = ["rag", "chunking", "markdown", "retrieval"]
classifiers = ["Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Topic :: Software Development :: Libraries :: Python Modules", "Intended Audience :: Developers"]
[project.scripts]
rag-chunk = "src.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]
[build-system]
requires = ["setuptools>=67.0"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
rich = ["rich>=12.0.0"]
tiktoken = ["tiktoken>=0.5.0"]
langchain = ["langchain>=0.1.0", "langchain-text-splitters>=0.0.1"]
semantic = ["sentence-transformers>=2.2.0", "numpy>=1.24.0"]
all = ["rich>=12.0.0", "tiktoken>=0.5.0", "langchain>=0.1.0", "langchain-text-splitters>=0.0.1", "sentence-transformers>=2.2.0", "numpy>=1.24.0"]