1[project]
2name = "llm-fragments-repomix"
3version = "0.1.0"
4description = "Load repository contents as LLM fragments using Repomix"
5readme = "README.md"
6authors = [{name = "Amolith"}]
7license = "Apache-2.0"
8requires-python = ">=3.9"
9dependencies = [
10 "llm"
11]
12
13[build-system]
14requires = ["setuptools"]
15build-backend = "setuptools.build_meta"
16
17[project.urls]
18Homepage = "https://git.sr.ht/~amolith/llm-fragments-repomix"
19Changelog = "https://git.sr.ht/~amolith/llm-fragments-repomix/refs"
20Issues = "https://todo.sr.ht/~amolith/public-tracker"
21
22[project.entry-points.llm]
23fragments_repomix = "llm_fragments_repomix"
24
25[project.optional-dependencies]
26test = ["pytest"]